I am trying to install Phabricator on Centos, I have followed all steps of installation, but I am getting `Request parameter '__path__' is not set. Your rewrite rules are not configured correctly`. My apache version is 2.2
Bellow is the virtual host entries.
<VirtualHost *:80>
ServerAdmin test@test.com
ServerName phabricator.test.com
DocumentRoot /var/www/html/myapps/phabricator/webroot/
RewriteEngine on
RewriteRule ^/rsrc/(.*) - [L,QSA]
RewriteRule ^/favicon.ico - [L,QSA]
RewriteRule ^(.*)$ /index.php?__path__=$1 [B,L,QSA]
ErrorLog logs/phabricator.test.com-error_log
CustomLog logs/phabricator.test.com-access_log common
<Directory "/var/www/html/myapps/phabricator/webroot/">
Order allow,deny
Allow from all
</Directory>
Any help would be appreciated.