| | |||||
| ||||||||
| Web Hosting Discussion Hosting topics including DNS, control panels, servers, choosing a host, support. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: Oct 2007 Location: Sydney, Australia
Posts: 1,022
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | .htaccess - Redirect sub-domains except www Hi, I know how to redirect all subdomains using a .htaccess file, but how do I exclude www from redirected. E.g. australia.music-chart.info -> redirects to Australia Music Chart | ITunes Music Chart Archive japan.music-chart.info -> redirects to www.music-chart.info/japan etc... but www.music-chart.info redirects to www.music-chart.info/www and I don't want it too. The code I currently have in my .htaccess is: Code: RewriteCond %{HTTP_HOST} ^(www\.)?([^.]+)\.music-chart\.info
RewriteRule ^$ http://www\.music-chart\.info/%2 [R=301] ????: NamePros.com http://www.namepros.com/web-hosting-discussion/644926-htaccess-redirect-sub-domains-except-www.html Richard |
| | |
| | THREAD STARTER #2 (permalink) |
| Senior Member Join Date: Oct 2007 Location: Sydney, Australia
Posts: 1,022
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Nevermind... this worked: Code: RewriteCond %{HTTP_HOST} !^www\.music-chart\.info$
RewriteCond %{HTTP_HOST} ^([^.]+)\.music-chart\.info$
RewriteRule ^$ http://www\.music-chart\.info/%1 [R=301] |
| | |
| | #3 (permalink) |
| NamePros Regular Join Date: Apr 2008
Posts: 371
![]() | The way you have it now is the best way that I can think of
__________________ █ XeHost.net - Hosting websites since 1999! █ Shared Hosting, Reseller Hosting, VPS Hosting, and Dedicated Servers █ Free WHMCS, End-User Support, and WHMReseller for Reseller Hosting Packages! █ Follow us on Twitter - new special every Sunday! @XeHost |
| | |
| | #4 (permalink) |
| NamePros Regular Join Date: Nov 2009
Posts: 656
![]() ![]() | Asking web hosting provider to do that redirect on the side of the server is the best option as for me.
__________________ Use coupon "Rob" and get 10% discount for any payment! WebIntellects - Fully Managed Dedicated and since 1999. WebhostGIANT - Low cost hosting from $2.79! |
| | |