mirror of
https://github.com/BlackMATov/unity-flash-tools.git
synced 2026-01-04 23:46:51 +07:00
24 lines
618 B
ApacheConf
24 lines
618 B
ApacheConf
Options +FollowSymLinks
|
|
RewriteEngine on
|
|
|
|
RewriteCond %{HTTP:Accept-encoding} gzip
|
|
RewriteCond %{REQUEST_FILENAME}gz -f
|
|
RewriteRule ^(.*)\.js$ $1\.jsgz [L]
|
|
|
|
RewriteCond %{HTTP:Accept-encoding} gzip
|
|
RewriteCond %{REQUEST_FILENAME}gz -f
|
|
RewriteRule ^(.*)\.data$ $1\.datagz [L]
|
|
|
|
RewriteCond %{HTTP:Accept-encoding} gzip
|
|
RewriteCond %{REQUEST_FILENAME}gz -f
|
|
RewriteRule ^(.*)\.mem$ $1\.memgz [L]
|
|
|
|
RewriteCond %{HTTP:Accept-encoding} gzip
|
|
RewriteCond %{REQUEST_FILENAME}gz -f
|
|
RewriteRule ^(.*)\.unity3d$ $1\.unity3dgz [L]
|
|
|
|
AddEncoding gzip .jsgz
|
|
AddEncoding gzip .datagz
|
|
AddEncoding gzip .memgz
|
|
AddEncoding gzip .unity3dgz
|