I am trying to point a subfolder on my site as a subdomain. for example, i want to turn www.domain.com/test to test.domain.com. I already have some rewrites in htaccess done
Try:
RewriteCond %{HTTP_HOST} !^www.domain.tv [NC] RewriteCond %{HTTP_HOST} ([^\.]+).domain.tv [NC] RewriteRule ^(.*)$ %1/$1 [L]