
What is .htaccess file and how is it useful ?
A .htaccess (hypertext access) file is a directory-level configuration file supported by several web servers, that allows for decentralized management of web server configuration. They are placed inside the web tree, and are able to override a subset of the server’s global configuration for the directory that they are in, and all sub-directories.

How to compress your web content using gzip compression
What is GZIP ? Gzip stands for GNU zip Compression algorithm which is actually a combination of LZ77 and Huffman Codes. Most of the modern web browsers including mobile web browsers support gzip encoded compressed files. The web servers like…

Automatically fire javascript event after page finishes loading
If you are a developer, you might require to fire a javascript event automatically after the page is loaded. In simpler words, you may need to activate any function automatically, for example – You may require a pop-up window or…