itpcc/Comcamp27/master/27/min/.htaccess - Htaccess File

itpcc/Comcamp27/master/27/min/.htaccess

<IfModule mod_rewrite.c>
RewriteEngine on

# You may need RewriteBase on some servers
#RewriteBase /min

# rewrite URLs like "/min/f=..." to "/min/?f=..."
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*).map$ http://%{HTTP_HOST}/assets/css/$1.map [L]
RewriteRule ^([bfg]=.*)  index.php?$1 [L,NE]
</IfModule>
<IfModule mod_env.c>
# In case AddOutputFilterByType has been added
SetEnv no-gzip
</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, no-gzip, REQUEST_FILENAME

Comments

Apache