htaccess Elite

.htaccess tutorial


All times are UTC [ DST ]





Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: cname to a diffrent folder using the htaccess
PostPosted: 30 Oct 2006 08:00 
Offline

Joined: 28 Oct 2006 07:37
Posts: 44
I know that one can set a cname to a diffrent folder using the htaccess file, would one be able to do that with another domain name?

ie

wholesale-travel.com goes to the main page
while disneywholesaletravel.com goes to wholesale-travel.com/disney

http://brainstormsandraves.com/archives/2005/10/09/htaccess/


Last edited by ti89 on 31 Oct 2006 03:00, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: 30 Oct 2006 08:01 
Offline

Joined: 28 Oct 2006 07:37
Posts: 44
Absolutly. You can even use subdomains for both domain names. I did some experimentation with my website and got it to work using code like this:



Code:
RewriteEngine On
RewriteBase /

# BEGIN REDIRECT CODE FOR TWO DOMAINS WITH SUBDOMAINS
# (Note: The following three lines may be
# copied and repeated for each subdomain.)

RewriteCond %{HTTP_HOST} sub.domain1.com
RewriteCond %{REQUEST_URI} !subdir1/
RewriteRule ^(.*)$ subdir1/$1 [L]

RewriteCond %{HTTP_HOST} sub.domain2.com
RewriteCond %{REQUEST_URI} !subdir2/
RewriteRule ^(.*)$ subdir2/$1 [L]


Code:
# The lines for a second domain follow...
# Note: This must be after all other lines for subdomains.
RewriteCond %{HTTP_HOST} domain2.com
RewriteCond %{REQUEST_URI} !domain2/
RewriteRule ^(.*)$ domain2/$1 [L]


# END OF REDIRECTION CODE



What this does is redirects:
sub.domain1.com to subdir1
sub.domain2.com to domain2/subdir2
domain2.com to domain2

If you don't want to use subdomains for the second domain, simply remove those lines from your htaccess file.

Good luck :)


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 7 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB