blob: 7029a45708274750b421aa17be18f4c6d655a6ff (
plain)
1
2
3
4
5
6
7
8
9
10
|
<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>
<IfModule mod_php5.c>
php_value short_open_tag 1
</IfModule>
|