Handle ?ftr=vidpgurl and ?replytocom URLs: Avoid Duplicate Content Penalty

Many bloggers and website owners face duplicate content problem because of two query strings in the URL’s. The query strings “?ftr=vidpgurl” and “?replytocom” results in duplicate contents. These query string are added dynamically. If you use WordPress as blogging platform then the query string “?replytocom” will appear. This is added dynamically to handle comments. We…

Speed Up websites by enabling .htaccess Caching using mod_expires and mod_headers

Caching files in browser or proxy rather than requesting every time reduces the network traffic between the server, the client.
Usually not everyone has control over their own server configuration file, but sometimes they do have .htaccess file accessibility. You can do efficient caching using the Apache .htaccess file.You need to configure few lines of commands in the .htaccess file instructing the server to handle the caching of different types of files.

How to create and use .htaccess file? Common usage and risks

.htaccess (hypertext access) is a a directory-level configuration file in several web servers.This is most common in Apache Web Server. .htaccess file allows for decentralized management of web server configuration. The directives in the .htaccess file apply to the current directory, and to all sub-directories. .htaccess files are read on every request.Changes made in these…