我已经安装了WAMP来测试我的WordPress主题。
但是每当404出现时,它都会显示默认的404页面而不是WordPress主题404页面。
如何解决此问题。
答案 0 :(得分:0)
查找Apache所在的404页面,并将其切换为wordpress页面。
Alias /error_html/ "/home/WebServer/www/host/error_html/"
<Directory "/home/WebServer/www/host.ru/error_html">
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority en cs de es fr it nl sv pt-br ro
ForceLanguagePriority Prefer Fallback
</Directory>
ErrorDocument 404 /error_html/HTTP_NOT_FOUND.html
</VirtualHost>
您只需更改ErrorDocument 404 /error_html/HTTP_NOT_FOUND.html
部分即可。