Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently have a subdomain i need to keep in tact: www.sub.domain.com

I also have a sub directory at www.domain.com/blog that needs to remain in tact

It's an annoying setup because I am using shopify which is 3rd party hosted using CNAMES. my shop is on shop.domain.com, and my blog is on domain.com/blog

I want to redirect ONLY root / domain.com (both www and non-www), but not if they land on anything after the / (a blog post for instance). its going to redirect to the subdomain.

This is what i have currently

ErrorDocument 404 /index.html
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
share|improve this question

1 Answer

up vote 2 down vote accepted

How about this?

RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com [NC]
RewriteRule ^$ <wherever you want to send the redirect> [NC,R=301]
share|improve this answer
Note that in .htaccess the leading slash is removed so the ReqriteRule pattern ^/$ will never match. Replace with just ^$ to get the result you want. – Ulrich Palha Dec 6 '11 at 22:23
Ulrich - good catch, and you're completely correct. Answer updated appropriately. Thanks! – ziesemer Dec 6 '11 at 22:25
thanks! will try soon. – Tallboy Dec 6 '11 at 22:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.