Very simple method to speed up websites that use wordpress as backend using .htaccess methodology
Add the below stuff whatever i have given in your .htaccess file simple.
gzip files
gzip allows you to compress files, so obviously that means they load faster. The code below will gzip html, text, css, js and php files:
<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>
Block spammers
After stopping spammers, we’re now blocking them too! Change the line deny from 123.346 etc to include the IP of said spammer.
<Limit GET POST PUT>
order allow, deny
allow from all
deny from 123.456.789
</LIMIT>
Use PHP compression
Another compression technique, this time for PHP. At this rate, your blog will be compressed to 1kb!
# php compression – use with caution
<ifmodule mod_php4.c>
php_value zlib.output_compression 16386
</ifmodule>
Some more to be added.Will be doing that soon. Enjoy my post guys
One more thing always
Protect Your htaccess
# protect the htaccess file
<files .htaccess>
order allow,deny
deny from all
</files>
Incoming search terms:
- (13)permission denied: ah00072: make_sock: could not bind to address [::]:80 (8)
- wordpress htaccess speed (3)
- gethostbyname htaccess (2)
- speed up wordpress htaccess (2)
- speed up wordpress back end (2)
- symfony2 customize 404 error page php (2)
- using htaccess to speed up wordpress (2)
- htaccess speed up (2)
- htaccess speed up site (2)
- speed up wordpress by htaccess (1)
- speed up wordpress hacks with htaccess (1)
- htaccess block from iframe (1)
- mysql c sharp retrieve image (1)
- javascript load content from another site -jQuery -iframe -ajax -swf (1)
- speed up wordpress with htaccess (1)
- yii htacess gzip (1)
- speeding up wordpress apache (1)
- worpress htaccess speed up (1)
- wordpress use a script dom htaccess (1)
- wordpress speed up htaccess (1)
- wordpress speed htaccess (1)
- wordpress htaccess cache (1)
- wordpress gzip apache handler (1)
- using htacces to speed up wordpes (1)
- speeding up wordpress with htaccess categories 404 (1)
- speeding up wordpress using htaccess (1)
- iframe в htaccess (1)
- htaccess tips for speed up wordpress (1)
- concrete5 htaccess (1)
- caching for wordpress using htaccess (1)
- cache htaccess for wordpress example (1)
- block iframe call htaccess (1)
- block direct access to search result wordpress (1)
- add next and previous dynamically in jcarousel configuration (1)
- 2012 speed up wordpress using htaccess (1)
- 2012 htaccess speed up wordpress (1)
- 19#1 using in htaccess (1)
- create led scrollers online as not html paste codes (1)
- disable the right click on pdf php (1)
- htaccess splash wordpress (1)
You will also be interested in ,
- Set xampp:- Apache Mysql Filezilla Mercury Tomcat as a windows service and get xampp to start automatically on boot up
- mod_proxy_balancer and installation
- mod_security the Apache Module, The Apache Firewall blocking your website?
- Custom Error Pages Using .htaccess
- ScriptAlias and Alias in httpd.conf at a glance
- Import large files in mysql using PhpMyAdmin
- How To Avoid 404 Error Pages Easily and Reliably
- Fix the problem in getting 500 Internal Server Error In Localhost Due To .htaccess
- Adding Handlers Directly In httpd.conf Of Apache
- Url rewriting examples using .htaccess

