i have 2 domain, 1 is old domain, 1 is new domain
i setup my new site in new domain, but i wish to have the new www.example.com/testing/ redirect to the old domain's folder.
can it be done? how?
-
if you you are running apache you can create a .htaccess file in the directory of the page you wish to redirect and use:
Redirect 301 /OldDir/OldPage.html http://www.domain.com/NewDir/NewPage.html
or a RedirectMatch:
RedirectMatch 301 ^/OldDir/(.*)$ http://www.domain.com/NewDir/$1
0 comments:
Post a Comment