无法在apache 2.4/redhat 7.0上配置phabricator

无法在apache 2.4/redhat 7.0上配置phabricator,apache,phabricator,Apache,Phabricator,我正在尝试在配置WHM和cpanel的redhat机器上配置phabricator 我正在使用.htaccess文件设置配置 这是我的.htaccess文件 RewriteEngine on RewriteRule ^/rsrc/(.*) - [L,QSA] RewriteRule ^/favicon.ico - [L,QSA] RewriteRule ^(.*)$ /index.php?__path__=

我正在尝试在配置WHM和cpanel的redhat机器上配置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
我尝试了在谷歌上找到的所有东西。
请帮助

我刚刚修改了.htaccess,将$1替换为适用于我的/$1

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

Require all granted

你在谷歌上找到的所有东西都包括吗?如果没有,问题中的信息表明,打开调试日志应该会显示正在重定向的URL,因此针对受影响URL的类似解决方案可能会起作用。我在一个链接上找到了该解决方案…现在它对我有效。