blob: 21796cffa9236e98586a92c7b4a9e994c82579c3 (
plain)
1
2
3
4
5
6
7
|
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !favicon.ico$
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
|