I need to create a conditional redirect and rewrite for apache that accomplishes the following
redirect any subdomain to a folder of the same subdomain ie
- subdomain.domain.com redirects to subdomain.domain.com/store
- subdomain2.domain.com redirect to subdomain2.domain.com/store
all subdomains with www. would do the same thing except remove the www ie
- www.subdomain.domain.com redirects to subdomain.domain.com/store
- www.subdomain2.domain.com redirect to subdomain2.domain.com/store
the main domain does not redirect but the domain with www. is rewritten to without the www ie
- domain.com does not redirect or change
- www.domain.com rewrites to domain.com
all options should work for http and https, ie http remains http and https remains https after any redirection or rewrite
Note: all subdomains points to the same main web folder.
What i have so far
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^/?$ "http\:\/\/www\.domain\.com\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^subdomain\.domain\.com [NC]
RewriteRule ^(.*)$ http://www\.domain\.com/store/$1 [L]