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

htaccess-conditional subdomain removal?

Hi-

I'm trying to figure out how to remove a subdomain from a URL in htaccess, but only if there is a path after the domain.

Examples:

http://www.subdomain.mysite.com/ - OK
http://subdomain.mysite.com/ - OK

http://www.subdomain.mysite.com/folder1/index.php - becomes: http://www.mysite.com/folder1/index.php

http://subdomain.mysite.com/folder1/index.php - becomes: http://mysite.com/folder1/index.php

Any clues?

Many thnx in advance,

-Midgard

Midgard
Newbie Poster
7 posts since Oct 2009
Reputation Points: 10
Solved Threads: 0
 

Hi-

I'm trying to figure out how to remove a subdomain from a URL in htaccess, but only if there is a path after the domain.

Examples:

http://www.subdomain.mysite.com/ - OK http://subdomain.mysite.com/ - OK

http://www.subdomain.mysite.com/folder1/index.php - becomes: http://www.mysite.com/folder1/index.php

http://subdomain.mysite.com/folder1/index.php - becomes: http://mysite.com/folder1/index.php

Any clues?

Many thnx in advance,

-Midgard


Use below given rewrite rules for this:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^subdomain.mysite.com$
RewriteRule ^/folder1/index.php$ http://mysite.com/$1 [R,L]


RewriteCond %{HTTP_HOST} ^www.subdomain.mysite.com$
RewriteRule ^/folder1/index.php$ http://www.mysite.com/$1 [R,L]


Thanks,
Manoj
links deleted by mod

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: