Hello All, I'm in a bit of a pickle. My host recently moved from one datacenter to another and rebuilt the server in the process (new OS, new CPanel upgrade, etc). On the host's old server I had the following .htaccess code in place that would work with wildcard subdomains: Options +FollowSymLinks Options +Indexes RewriteEngine On RewriteCond %{ENV:REDIRECT_STATUS} ^$ RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com$ [NC] RewriteCond %{HTTP_HOST} ^(www\.)?([^\.]+)\.yourdomain\.com$ [NC] RewriteRule (.*) /mybb/$1 [L] Code (markup): The idea of the above code is that if I type anything.mydomain.com there is supposed to be a redirect and this is forwarded to a PHP script I have and it calls up a forum based on the subdomain I typed in. The account also had wildcard DNS enabled. On the old server everything worked fine. On the host's new server, the above .htaccess code is being ignored. Wildcard DNS has been enabled for my account and if I type anything.mydomain.com I see the page I put up at mydomain.com. The problem is that the .htaccess code above for the redirection of the wildcard subdomains is being ignored. I should not see the page I put in public_html, rather I should be redirected as the code above specifies. I have other mod_rewrite rules in place in the .htaccess file for other parts of the site and they work fine. I know this code and my .htaccess file syntax works as it worked PERFECT on the host's old server, just it doesn't work on the new one. I've been talking with my host for the past few days now trying to resolve this issue, with no luck. Does anyone here have any ideas why the code would be ignored? I've tried a few variations of code as well that are supposed to do the same as above with no results either. Maybe there is some setting not installed on the new server or some security someone knows about that would be blocking this? I do not have ssh access to the server, but if anyone has any ideas as to why this is happening I would appreciate it and I could forward this to my host to get this resolved. Thanks, BMR777