We're a community of 1077K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,076,151 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

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.

4
Contributors
5
Replies
2 Months
Discussion Span
2 Years Ago
Last Updated
6
Views
PaliGap
Newbie Poster
11 posts since May 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 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
Skill Endorsements: 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
Skill Endorsements: 0

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
Skill Endorsements: 0

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
Skill Endorsements: 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
Skill Endorsements: 0

This article has been dead for over three months: Start a new discussion instead

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page rendered in 0.0767 seconds using 2.76MB