From cf01b5f3dfcd835d2b8ae6665c36464baa480df6 Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Tue, 11 Nov 2008 11:40:29 +0100 Subject: [PATCH] Added .htaccess example for Apache. --- INSTALL.mdtext | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/INSTALL.mdtext b/INSTALL.mdtext index 61849fd..50231bb 100644 --- a/INSTALL.mdtext +++ b/INSTALL.mdtext @@ -38,3 +38,17 @@ Now you can login with this user into the interface. +## For the Apache Webserver Users + +If you are using [Apache](http://httpd.apache.org/) for your webserver +and want to have nice URLs like `http://yourdomain.com/p/yourproject/` +and not `http://yourdomain.com/index.php/p/yourproject/` you can use +the following `.htaccess` file to be put in the same folder of the +`www/index.php` file. + + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule ^(.*) /index.php/$1 + +