Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Improving Website Speed
#27

Hurray for jerry-rigging things. I ended up just compressing all the .js and .css files into their own .gz file, then adding handlers for the resulting files, along with a rewrite to use the pre-zipped ones instead. It should also lower the load on the server and be even faster than having it deflate the file every time. ;3

One liner to gzip all css and js files Wrote:find . -regex ".*\(css\|js\)$" -exec bash -c 'echo Compressing "{}" && gzip -cf --best "{}" > "{}.gz"' \;

.htaccess addition Wrote:
AddType "text/javascript" .gz
AddEncoding gzip .gz


AddType "text/css" .gz
AddEncoding gzip .gz

RewriteEngine on
#Check to see if browser can accept gzip files.
ReWriteCond %{HTTP:accept-encoding} gzip
RewriteCond %{HTTP_USER_AGENT} !Safari
#make sure there's no trailing .gz on the url
ReWriteCond %{REQUEST_FILENAME} !^.+\.gz$
#check to see if a .gz version of the file exists.
RewriteCond %{REQUEST_FILENAME}.gz -f
#All conditions met so add .gz to URL filename (invisibly)
RewriteRule ^(.+) $1.gz [QSA,L]


Messages In This Thread
Improving Website Speed - by Eru - 02-14-2012, 08:19 AM
Improving Website Speed - by Elcid - 02-14-2012, 08:20 AM
Improving Website Speed - by Boomrak Brewforge - 02-14-2012, 08:34 AM
Improving Website Speed - by Taran - 02-14-2012, 08:56 AM
Improving Website Speed - by Brandon - 02-14-2012, 08:58 AM
Improving Website Speed - by Azzo - 02-14-2012, 10:00 AM
Improving Website Speed - by hilbertsawhat - 02-14-2012, 10:16 AM
Improving Website Speed - by Atlas - 02-14-2012, 01:45 PM
Improving Website Speed - by Carding - 02-14-2012, 01:56 PM
Improving Website Speed - by Taran - 02-14-2012, 02:03 PM
Improving Website Speed - by Raziel_ - 02-14-2012, 02:16 PM
Improving Website Speed - by Rob - 02-14-2012, 03:58 PM
Improving Website Speed - by Doc - 02-14-2012, 04:52 PM
Improving Website Speed - by Nasir - 02-14-2012, 06:18 PM
Improving Website Speed - by Rob - 02-14-2012, 07:06 PM
Improving Website Speed - by Eru - 02-18-2012, 10:33 AM
Improving Website Speed - by Eru - 02-18-2012, 07:03 PM
Improving Website Speed - by Rob - 02-18-2012, 09:34 PM
Improving Website Speed - by Eru - 02-18-2012, 10:11 PM
Improving Website Speed - by Rachet - 02-18-2012, 11:34 PM
Improving Website Speed - by Scare crow - 02-19-2012, 12:33 AM
Improving Website Speed - by soMa - 02-19-2012, 03:16 AM
Improving Website Speed - by sm0ke - 02-19-2012, 03:54 AM
Improving Website Speed - by Eru - 02-19-2012, 04:33 AM
Improving Website Speed - by Nasir - 02-22-2012, 09:08 PM
Improving Website Speed - by Eru - 02-23-2012, 10:57 PM
Improving Website Speed - by Eru - 02-24-2012, 06:59 AM
Improving Website Speed - by Elcid - 02-26-2012, 01:54 PM
Improving Website Speed - by Eru - 02-26-2012, 09:36 PM
Improving Website Speed - by Elcid - 02-27-2012, 01:18 AM
Improving Website Speed - by Eru - 02-27-2012, 04:32 AM

Forum Jump:


Users browsing this thread: 5 Guest(s)