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

Unable to configure phabricator on apache 2.4/redhat 7.0

我正在尝试在配置了 WHM 和 cpanel 的 redhat 机器上配置 phabricator。

我正在使用我的 .htaccess 文件来设置配置。

这是我的 .htaccess 文件

RewriteEngine on  
RewriteRule ^/rsrc/(.*)     -    [L,QSA]  
RewriteRule ^/favicon.ico   -                       [L,QSA] 
RewriteRule ^(.*)$          /index.php?__path__=  [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

我尝试了在 google 上找到的所有内容。 请帮助

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

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

Require all granted