How to redirect all pages to a new domain
If you want to redirect all pages of a domain to a new domain using .htaccess file then use the following code in the root directory of the old domain to redirect all URLs to the new domain.
How to redirect all pages to a new domain
RewriteEngine On
RewriteRule ^(.*)$ http://newdomain.com/ [R=301]
Note: Change the newdomain.com with your domain name such as seowebconfiguration.com as example given below
RewriteEngine On
RewriteRule ^(.*)$ http://www.internetmarketing.technology/ [R=301]
No comments