Apache - Redirect web page with out www, Redirect page from www.w3calculator.com to w3calculator.com

Redirect web page with out www

Redirect a page with or without www

A web page can be redirected to any domains you wish. If you wish to redirect your domain without www in front on your domain name, then you can use the following example.

RewriteCond %{HTTP_HOST} ^www.w3calculator.com$
RewriteRule ^([0-9a-z]+)$ http://w3calculator.com/$1 [L,R=301] 

In the above example the domain http://w3calculator is redirected to http://w3calculator.com. www is removed and redirected without www. This can be used when you subdomains.

The topic on Apache - Redirect web page with out www is posted by - Math

Hope you have enjoyed, Apache - Redirect web page with out wwwThanks for your time

Tech Bluff