diff options
author | emkael <emkael@tlen.pl> | 2015-01-27 16:31:12 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2015-01-27 16:31:12 +0100 |
commit | cab5dcbafb0f82ba742ac014741dfc4208be9fbd (patch) | |
tree | 3081fc9150ac7d15280c099a4699085a2a27087f /http/.htaccess |
* initial commit
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] + |