How to redirect special pages to new domain?
-
Hello.
I have 2 websites in diffrent category and i want to move some of my visitor that arrived in specific page of doamin1 (url like this: http://example.com/pages/.........)to root of domain 2.
-
Hello,
Easiest way I think is to create a .htaccess file in the root of domain 1 and add this text.
RewriteEngine On
RewriteBase /
redirect 301 /pages/some-page-here http://domain2.com
This will redirect the user on http://www.domain1.com/pages/some-page-here to http://www.domain2.com
-
thank for your responce but the below code more help me that your suggest
RewriteRule ^ads-sub-cat/(.*)$ http://adshub.ir [R=301,L]