From a854c881f436ab91739d87e748b1919baaf934d8 Mon Sep 17 00:00:00 2001 From: Paul Ollivier Date: Tue, 25 Jun 2013 10:55:49 +0200 Subject: [PATCH] Fix for 404 error on project pages when comming from the project list --- .htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.htaccess b/.htaccess index b3e5da9..9a4ff4b 100644 --- a/.htaccess +++ b/.htaccess @@ -5,7 +5,7 @@ #RewriteBase /path/to/gitlist/ RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule ^(.*)$ index.php [L,NC] + RewriteRule ^(.*)$ index.php/$1 [L,NC] order allow,deny