blob: 85a4c0647c7b030361eaec92ae1b6c0078acba79 (
plain)
1
2
3
4
5
6
7
8
|
RewriteEngine On
# Deliver literal files as-is
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule (.*) index.php?route=$1&htaccess=1 [L]
|