Categories

How to 301 Redirect static URLs using htaccess

Share

If your website has static URLs i.e. do not contain any query string parameters and you need to redirect your old website URLs to your new website URLs then you don’t have to fear anymore. You can write simple redirect statements in your .htaccess file and you don’t have to be regular expression guru.

[...]

How to 301 redirect non-www URLs to www URLs using htaccess

Share

If your website can be accessed by two different URLs then your website could be penalized for duplicate content by the search engines which would be costly in terms of your rankings. For e.g. if your website can be accessed by http://www.exampleurl.com and http://exampleurl.com then Google may deem it as duplicate content.

Google provides [...]

How to 301 redirect SSL URLs to non-SSL URLs using .htaccess

Share

If you would like to rewrite your SSL URLs to non-SSL URLs then please add the following code to your .htaccess file.

RewriteCond %{SERVER_PORT} ^443$ RewriteRule ^(.*)$ http://www.adeelsarfaraz.com/$1 [R=301,L]

The above code should be used in the following conditions:

1. Your website used to run on https:// and now it does not [...]