954,242 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

RewriteRule For New Domain

I need a rewrite rule to change requests for a specific script on one domain and sub-domain to another domain and path:

http://domain-one.com/cgi-bin/38837728.cgi
or
http://www.domain-one.com/cgi-bin/38837728.cgi

to
http://somwhere-else.net/cgi-bin/abc/38837728.cgi

I have other domains that share the same script directory as domain-one.com and www.domain.com . But I only want to redirect requests for domain-one.com and www.domain.com , not anything else!

Thanks in advance.

PaliGap
Newbie Poster
6 posts since May 2010
Reputation Points: 10
Solved Threads: 0
 
RewriteEngine On
RewriteCond %{HTTP_HOST} domain-one\.com$ [NC]
RewriteRule ^cgi-bin/38837728.cgi$ http://somwhere-else.net/cgi-bin/abc/38837728.cgi [L,R=301]


That should be pretty close.

james.newell
Light Poster
33 posts since Mar 2010
Reputation Points: 11
Solved Threads: 3
 
RewriteEngine On
RewriteCond %{HTTP_HOST} domain-one\.com$ [NC]
RewriteRule ^cgi-bin/38837728.cgi$ http://somwhere-else.net/cgi-bin/abc/38837728.cgi [L,R=301]


That should be pretty close.

james.newell
Light Poster
33 posts since Mar 2010
Reputation Points: 11
Solved Threads: 3
 

Ya james is right but need to add one more RewriteCond:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain-one\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.domain-one\.com$ [NC]
RewriteRule ^cgi-bin/38837728.cgi$ http://somwhere-else.net/cgi-bin/abc/38837728.cgi [L,R=301]

I think, this will solve your rewrite rule problem.

---
Manoj

manojsamtani
Light Poster
Banned
37 posts since Apr 2011
Reputation Points: 10
Solved Threads: 0
Infraction Points: 5
 

That is when you resolve the domain with www. if it is without www, just put vice versa.

farooqwani19
Newbie Poster
2 posts since Apr 2011
Reputation Points: 10
Solved Threads: 0
 

Please read the question again :) its for with www!!!

manojsamtani
Light Poster
Banned
37 posts since Apr 2011
Reputation Points: 10
Solved Threads: 0
Infraction Points: 5
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: