-3

我将我的网站从 wordpress 3.4 升级到 3.5.1,然后,我得到了 500 内部服务器错误。虽然我的 wordpress 后端运行完美。只有前端显示此错误。

我尝试更改永久链接,将主题更改为 21,但没有帮助。

我的网站在 GoDaddy 的 Windows 服务器上,所以我也尝试了 web.congig,但还是一样。

4

1 回答 1

0

检查错误日志,可能的解决方案可能是:

  • 将权限从 0644 更改为 0755
  • 将此代码添加到您的 wp-config 文件中:

要求(ABSPATH。WPINC。'/class-wp-embed.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>
    
于 2013-05-23T08:18:03.180 回答