.htaccess Redirection.
How to redirect a website using .htaccess? Redirect website http://mydomain.com to http://www.mynewdomain.comRewriteEngine onRewriteCond %{HTTP_HOST} ^mydomain\.com$RewriteRule ^(.*)$ http://www.mynewdomain.com [R=301,L] Redirect website mydomain.com with and without www requests to http://www.mynewdomain.comRewriteEngine onRewriteCond %{HTTP_HOST} ^www\.mydomain\.com$ [OR]RewriteCond %{HTTP_HOST} ^mydomain\.com$RewriteRule ^(.*)$ http://www.mynewdomain.com [R=301,L] Redirect requests from http://mydomain.com to http://mydomain.com/subdirectory i.e. redirecting requests from main domain to… Continue Reading .htaccess Redirection.