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

时间:2017-04-16 11:34:58

标签: apache phabricator

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

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

这是我的.htaccess文件

 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

这就是我在apache2.4错误日志中获得的内容

public class StaticTest {

    private static String a;
    private static String b = "this is " + a;

    public static void main(String[] args) {
        a = "test";

        System.out.println(b); // prints "this is null"
    }

}

我尝试了在谷歌上找到的所有内容。 请帮忙

1 个答案:

答案 0 :(得分:0)

我刚修改了我的.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
相关问题