我的wordpress网站上的WAMP 500内部服务器错误

时间:2018-11-23 12:08:31

标签: wordpress internal-server-error

昨天,当我“沉迷于” wordpress网站常规设置中的链接时,我发现自己站在500个内部服务器错误消息的前面,并且感到恐慌,因为之前从未见过这样的事情。经过深入研究,我发现确切的问题是这样的:

[core:error] [pid 9876:tid 1316] [client ::1:64092] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://localhost/eshop/wp-admin/options-general.php

并且我的.htaccess包含以下内容:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /eshop/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /eshop/index.php [L]
    </IfModule>

    # END WordPress

由于我不是开发人员,所以所有这些对我来说都是陌生的,我不怎么处理它们。任何帮助将不胜感激,因为从昨天开始我不知道如何访问我的网站。

预先感谢您, 法尼

1 个答案:

答案 0 :(得分:0)

如果您将WP安装移动到了文件夹,那么如果您不是开发人员,则编辑wp-config.php文件将是最安全的 通过在顶部插入以下几行来定义WP_HOME和WP_SITEURL设置:

define('WP_HOME','https://example.com/folder/');
define('WP_SITEURL','https://example.com/folder/');