i was using .htaccess to do subdomains instead of cpanel's (since i have an ip, and i needed to point to another directory other than cpanel's default /home/user/public_html/dir). however, it seems that its broken... i have the following in .htacces (/home/user/public_html/):
i'm not sure if this involves mod_rewrite or not (but i think it does), but any help would be deeply appreciated... TIA
Code:
RewriteEngine On
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} member01.domain.com
RewriteCond %{REQUEST_URI} !_users/
RewriteRule ^(.*)$ _users/member01/$1 [L]

Comment