2011-03-22 42 views
1

過去4周我無法在本地Apache上自動執行WordPress安裝。另一臺機器上的正常進程達標 - 複製WP安裝,運行並執行安裝腳本。我在這裏看到的是空白頁或內部服務器錯誤。Apache和內部服務器錯誤和WordPress安裝的內部重定向

即使我手動更正手動我的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

這聽起來像是有一個重寫規則導致無限重寫循環或其他類型的別名循環在你的配置。沒有看到你的apache配置的其餘部分,我無法確定。

+0

我不使用虛擬主機,它是Apache上的乾淨安裝,並且是那裏的根文檔目錄。還有什麼可能影響? – 2011-04-09 18:37:31