I have a few folders that need to act differently depending on whether they are accessed from the root domain or a subdomain. I basically need .htaccess to do something like:
if(sub.domain.com)
do something
else if(domain.com)
do something else
Is this possible with .htacces?
Thanks in advance