2017-04-16 98 views
0

我試圖在配置了WHM和cpanel的redhat機器上配置phabricator。無法在apache 2.4/redhat 7.0上配置phabricator

我正在使用我的.htaccess文件來設置配置。

這是我的.htaccess文件

RewriteEngine on 
RewriteRule ^/rsrc/(.*)  - [L,QSA] 
RewriteRule ^/favicon.ico -      [L,QSA] 
RewriteRule ^(.*)$   /index.php?__path__=$1 [B,L,QSA] 

Require all granted 

,這就是我讓我的apache2.4錯誤日誌

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 

我想這是我在谷歌發現一切我。 請幫助

+0

替換$ 1中修改我的.htaccess您是否對谷歌發現一切包括http://stackoverflow.com/questions/23048827/error- 500-on-phabricator-installation-on-ubuntu-apache2-php5-fpm-mysql?如果不是這樣,那麼問題中的信息就表示打開調試日誌記錄應該會顯示哪個URL正在被重定向,所以受影響的URL的類似解決方案可能會起作用。 – JSON

+0

我在鏈接上找到了解決方案......現在它正在爲我工​​作。 –

回答

0

我只是用/ $ 1,它爲我的作品

RewriteEngine on 
RewriteRule ^/rsrc/(.*)  - [L,QSA] 
RewriteRule ^/favicon.ico -      [L,QSA] 
RewriteRule ^(.*)$   /index.php?__path__=/$1 [B,L,QSA] 

Require all granted