Wireless Army
This is a blog / tips and tricks website for web developers and security researchers.
follow us in feedly


speed up you site with htaccess
by admin
 at 2018-08-25 00:57:00.

if you have a apache webserver and your site is heavy you can compress it a bit.

by adding the next line it your .htaccess file it will compress your images and html and javascript for delivery so it will speed up your site.
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript application/rss+xml application/xhtml+xml text/plain image/png image/jpeg
</ifmodule>