AddDefaultCharset UTF-8
Options+FollowSymLinksIndexIgnore*/*# Make sure that only index.php is calledDirectoryIndex index.php
#php_value short_open_tag 1<IfModule mod_rewrite.c>RewriteEngine on
# Use gzipped static files if they existRewriteCond%{HTTP:Accept-encoding} gzip
RewriteCond%{HTTP_USER_AGENT}!KonquerorRewriteCond%{REQUEST_FILENAME}.gz -f
RewriteRule^(.*).(css|js)$ $1.$2.gz [QSA,L]<FilesMatch.css.gz$>ForceType text/css
</FilesMatch><FilesMatch.js.gz$>ForceType text/javascript
</FilesMatch><IfModule mod_mime.c>AddEncoding gzip .gz
</IfModule># if a directory or a file exists, use it directlyRewriteCond%{REQUEST_FILENAME}!-f
RewriteCond%{REQUEST_FILENAME}!-d
# otherwise forward it to index.phpRewriteRule. index.php [L]# Forward dangerous paths to index.phpRewriteCond%{REQUEST_FILENAME}(.*/)?.svn/[OR]RewriteCond%{REQUEST_FILENAME}.git/[OR]RewriteCond%{REQUEST_FILENAME}.gitignore$ [OR]RewriteCond%{REQUEST_FILENAME} protected/[OR]RewriteCond%{REQUEST_FILENAME} README.md [OR]RewriteCond%{REQUEST_FILENAME} vendor/[OR]RewriteCond%{REQUEST_FILENAME} composer.phar [OR]RewriteCond%{REQUEST_FILENAME} composer.json [OR]RewriteCond%{REQUEST_FILENAME} composer.lock
RewriteRule. index.php [L]</IfModule>