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]