Log in

View Full Version : Redirect from Folder to Main Page



deezin
01-10-2006, 03:44 PM
Hello. I hope someone can help. I want to redirect from a folder on site one to the main page on site2. So for example...allfiles in

Site1.com/subdirectory/

should point towards

Site2.com/

so Site1.com/subdirectory/file1.html would be the same as Site2.com/file1.html etc...

I know that you put this in your .htaccess file when you are doing old-domain to new-domain redirection:

RewriteEngine On
RewriteBase /

RewriteRule ^(.*)$ http://www.newsite.com/$1 [R=301,L]

but how do you do a old-domain-folder to new-domain redirection?

Thanks!!!

mwinter
01-10-2006, 08:03 PM
I want to redirect from a folder on site one to the main page on site2. So for example...allfiles in

Site1.com/subdirectory/

should point towards

Site2.com/

so Site1.com/subdirectory/file1.html would be the same as Site2.com/file1.html etc...The Redirect directive (http://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirect) (including RedirectPermanent and the like) will do fine here.



Redirect /subdirectory/ http://www.site2.com/
Mike

deezin
01-10-2006, 08:12 PM
Thank you Mike. :-)