I'm using the following to redirect wildcard sub domains to corresponding folders:
RewriteCond %{REQUEST_URI} !^/users/ [NC]
RewriteCond %{HTTP_HOST} ^(.+)\.domain\.com$ [NC]
RewriteCond %1 !=www [NC]
RewriteRule ^(.*)$ /users/%1/$1/? [L]
I would like to add a rewrite rule that redirects anyone that accesses the direct /users/ path back to the sub-domain version like this:
www.domain.com/users/username/../../ => username.domain.com/../../
Thank you in advance!