10 lines
314 B
ApacheConf
10 lines
314 B
ApacheConf
RewriteEngine On
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|
|
|
|
# BEGIN GZIP
|
|
<ifmodule mod_deflate.c>
|
|
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
|
|
</ifmodule>
|
|
# END GZIP |