过去4周,我无法在我的本地Apache上自动安装WordPress。另一台机器上的正常进程是标准的 - 复制WP安装,运行并执行安装脚本。我在这里看到的是空白页或内部服务器错误。
即使我使用设置和安装手动更正我的wp-config.php文件,我再次收到相同的错误。最后的WP版本没有.htaccess分发,因此我希望在本地服务器的每次安装时都不需要.htaccess。
这里有我的httpd.conf设置目录:
<Directory "/var/www/html">
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
AllowOverride All
</Directory>
mod_rewrite在这里加载。
我对我的/ etc / hosts也很怀疑,但我们有以下内容:
127.0.0.1 localhost localhost.localdomain
我查看了我的php.ini文件(PHP是5.3.3),没有具体问题。但是,我从apache的错误日志说明如下:
[error] [client 127.0.0.1] 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.
有什么想法吗?
答案 0 :(得分:0)
听起来有一个重写规则导致无限的重写循环或配置中的其他类型的别名循环。在没有看到你的apache配置的其余部分的情况下,我无法确定。