Some changes

This commit is contained in:
OptimusCrime
2014-10-16 19:21:06 +02:00
parent 5847a621e8
commit bbd3b214d1
4 changed files with 43 additions and 2 deletions

11
ht.access Executable file
View File

@@ -0,0 +1,11 @@
# Mod rewrite
RewriteEngine On
RewriteBase /
# Route all requests to index.php unless real file or folder
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
# Disallow directory listing
Options -Indexes