Browse Source

- Add .htaccess

pull/16/head
Jaussoin Timothée 13 years ago
parent
commit
67d2c144b4
  1. 13
      .htaccess

13
.htaccess

@ -0,0 +1,13 @@
Options -Indexes
<IfModule mod_rewrite.c>
# Tell PHP that the mod_rewrite module is ENABLED.
SetEnv HTTP_MOD_REWRITE 1
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?query=$1 [L]
</IfModule>
Loading…
Cancel
Save