[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Redirect
- Subject: Re: [cobalt-users] Redirect
- From: "John A. Federico" <cobalt@xxxxxxxxxxxxxxxxxx>
- Date: Fri Mar 21 06:43:02 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
On Thu, 20 Mar 2003, Todd W wrote:
> I was wandering if there was a way to redirect a site like this:
>
> person goes to www.domain.com and they are redirected to
> www.domain2.com/folder
Use mod_rewrite:
http://httpd.apache.org/docs/mod/mod_rewrite.html
This guide is also very helpful:
http://httpd.apache.org/docs/misc/rewriteguide.html
Set up your .htaccess file like this:
RewriteEngine on
RewriteRule ^/?$ /directoryName/ [R]
hth
-jf.