我将我的网站从wordpress 3.4升级到3.5.1,在这之后,我得到了500内部服务器错误。虽然我的wordpress后端运行完美。只有前端正在解决这个错误。
我尝试更改固定链接,将主题更改为二十一,但没有帮助。
我的网站在GoDaddy的Windows服务器上,所以我也尝试使用web.congig,但它仍然是一样的。
答案 0 :(得分:0)
检查错误日志,可能解决方案可能是:
require(ABSPATH.WPINC。'/ class-wp-engine.php');
清理.htaccess并将其更改为:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>