@
chairuosen @
ericls @
sophy 我觉得是不是我没描述清楚呢,php错误不应该是直接输出在页面上的吗?我也没关闭输出500错误啊?为什么需要500页面?(我知道你们说的是500单独一个页面显示500错误,但是我是需要显示报错的,所以500页面自然就不需要了吧)而且平时语法错误,忘记打分号都是会报错并中断的。
而且在htaccess中也没自定义错误页面。
@
yanwen我的htaccess很正常,而且平时访问也没问题,问题出在有500错误的时候,会出现WP的404页
顺便贴上我的htaccess吧,只有wp目录有。
DirectoryIndex default.html default.htm default.php index.html index.htm index.php
LimitRequestBody 10240000
SetEnv TZ Asia/Shanghai
#AddOutputFilter DEFLATE html htm xml php js css
#<ifmodule mod_deflate.c>
#AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml application/x-httpd-php application/x-javascript
#</ifmodule>
Options -Indexes
# BEGIN WPSuperCache
# END WPSuperCache
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress