Added .htaccess example for Apache.

dev
Loic d'Anterroches 2008-11-11 11:40:29 +01:00
parent 9e91215205
commit cf01b5f3df
1 changed files with 14 additions and 0 deletions

View File

@ -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