[SOLVED] YAMRQ (Yet Another mod_rewrite Question)
Posted: Tue Mar 14, 2006 6:26 pm
Hey everyone,
I am trying to forward xxx.tmeet.com ==> tmeet.com/fwd.php?username=xxx. Behold my might .htaccess file:
But it isn't working =( All the subdomains point to the root, that has been taken care of. But xxx.tmeet.com still goes to index.html instead of to that script. Can someone tell me why and hint at how to correct this issue?
Thanks!
I am trying to forward xxx.tmeet.com ==> tmeet.com/fwd.php?username=xxx. Behold my might .htaccess file:
Code: Select all
php_flag register_globals off
RewriteEngine on
RewriteRule ^([^/.]+).tmeet.com/?$ fwd.php?username=$1 [L]Thanks!