我创建了一个500。html文件,并希望为我的wordpress站点加载此页面。我现在正在XAMP localhost上运行,但我以前从未做过这种事情,我希望能够首先让它在我的localhost上运行,以确保它在部署时能够在实时服务器上运行。
到目前为止,我已经尝试了以下方法。htaccess文件:
ErrorDocument 500 http://localhost/500.html
但这不起作用,也没有显示500。html文件,当我在我的标题中执行此操作时。php文件自定义wordpress主题(最顶部):
throw new Exception(\'Nooooooooooooooo!\');
我想这应该会抛出500个错误,但我得到的只是一个空白页。我还试着把500。html文件中的主题根文件夹,并链接到该文件夹,但没有运气。目前,这是我的。htaccess文件:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteRule ^^members/([^/]*)/([^/]*)/? /^members/$matches[1]/?$matches[2] [QSA,L]
RewriteRule ^^/([^/]*)/([^/]*)/? /^/$matches[1]/?$matches[2] [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
ErrorDocument 500 http://localhost/500.html
wordpress是否有任何内置设置?如果有什么我需要放进我的。htaccess文件,我应该把它放在哪里?