diff options
Diffstat (limited to 'http/.htaccess')
-rw-r--r-- | http/.htaccess | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/http/.htaccess b/http/.htaccess new file mode 100644 index 0000000..28a620e --- /dev/null +++ b/http/.htaccess @@ -0,0 +1,8 @@ +RewriteEngine On + +RewriteBase / + +RewriteCond %{SCRIPT_FILENAME} !-f +RewriteCond %{SCRIPT_FILENAME} !-d +RewriteRule ^[^\.]*$ index.php [QSA,L] + |