From 449e08e5193a5d1b1611ae32cce2d5e7240a11fe Mon Sep 17 00:00:00 2001 From: Marcos Coelho Date: Wed, 19 Dec 2012 23:38:27 -0200 Subject: [PATCH] fix #214 - rewrite rule in .htaccess points to root of document directory --- .htaccess | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.htaccess b/.htaccess index efb9407..b3e5da9 100644 --- a/.htaccess +++ b/.htaccess @@ -2,8 +2,10 @@ Options -MultiViews RewriteEngine On + #RewriteBase /path/to/gitlist/ + RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule ^(.*)$ /index.php [L,NC] + RewriteRule ^(.*)$ index.php [L,NC] order allow,deny