我已經將我的網站克隆爲xampp本地版本。我的WordPress網站位於C:/ xampp/htdocs/my-website。XAMMP Wordpress安裝無法找到圖片/文件
我也將我的數據庫克隆到本地,並將網址從網絡更改爲http://localhost/my-website。
我已經做了一個.htaccess文件,並已經設置xampp覆蓋所有在httpd.conf文件不會被忽略。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /my-website/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /my-website/index.php [L]
</IfModule>
# END WordPress
我可以看到我的網站http://localhost/my-website但我所有的.js,的CSS,巴紐等無法找到的文件。我查看了Firefox的網絡分析,鏈接不完整。
這是錯誤的鏈接:
http://localhost/wp-content/themes/storefront/startseite.js
但它應該是這樣的:
http://localhost/my-website/wp-content/themes/storefront/startseite.js
我已經搜查了很多在谷歌,但能找不到解決方案。希望你知道答案。
謝謝你們!
有人知道答案嗎? – ItsOdi