AddDefaultCharset utf-8
Options -Indexes
<IfModule mod_headers.c>
<FilesMatch "\.(jpg|gif|png|svg|ico|css|js|woff|eot)$">
Header set "Expires" A3600
Header set "Cache-Control" "must-revalidate, public, max-age=3600"
</FilesMatch>
</IfModule>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/css application/javascript text/html
</IfModule>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .* - [L]
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule .*\.jpg$ ./inc/no.gif [L]
RewriteRule (.*) index.php?q=$1 [QSA]
