Added .htaccess example for Apache.
This commit is contained in:
parent
9e91215205
commit
cf01b5f3df
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user