Right now my rewrite rule forwards all subdomains except chat.auricle.fm to the root:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^.*\.auricle\.fm [NC]
RewriteRule ^(.*)$ http://auricle.fm/$1 [L,R=301]
How can I change it so that it forwards all subdomains except for chat.auricle.fm?
