我使用WAMPSERVER運行必須可供我的網絡中的用戶訪問的wordpress站點,例如一起測試的環境。當從子文件夾請求內容時,Wordpress站點返回404錯誤
Localhost工作正常,但起初我無法從網絡中的其他計算機訪問應用程序。我創建了一個規則來打開端口80,在Apache配置中創建了一個別名,並且它工作正常,但子文件夾中的主題和任何圖像都不會加載,並且控制檯正在返回大量的404響應。
我想映射位於該網站「基本目錄」下的子文件夾及其文件。我在Apache conf中嘗試了很多選項。文件,但我無法做到。
附加響應的PRINTSCREEN,apache的的conf文件和Windows主機文件
在httpd.conf:
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "c:/wamp/www"
ServerName localhost
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-access.log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "C:\wamp\www\website"
ServerName www.animamidia
ErrorLog "logs/animamidia-error.log"
CustomLog "logs/animamidia-access.log" common
<Directory "C:\wamp\www\website\*">
Options FollowSymLinks Includes
AllowOverride All
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
Windows主機文件:
127.0.0.1 www.animamidia
The site with it's theme broken because the requisition returned a 404