2017-04-16 97 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