diff options
author | MaZderMind | 2016-12-26 00:30:23 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-26 00:30:23 +0100 |
commit | 0beac83b9546908eeb390592bcd2a0a147465232 (patch) | |
tree | df30e0a5d260c436540db5be31a86ef3530ce840 /.htaccess | |
parent | 51cf4686200b67afa08a49ef99b100d3773bade3 (diff) |
repair routing under apache mod_php/mod_redir
Diffstat (limited to '')
-rw-r--r-- | .htaccess | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -5,4 +5,8 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l -RewriteRule (.*) index.php?route=$1&htaccess=1 [L] +RewriteRule (.*) index.php?route=$1&htaccess=1 [L,QSA] +RewriteRule ^/?$ index.php?route=$1&htaccess=1 [L,QSA] + +#DirectoryIndex index.php?htaccess=1 +DirectoryIndex disabled |