hi, i previously i had a folder like this : http://www.mysite.com/dir in dir folder i had a mod rewrite .htaccess , which worked fine, all the redirections worked fine... RewriteEngine on RewriteRule ^go-(.*)-(.*).html$ index.php?go=$1&id=$2 [L,NC] RewriteRule ^(.*)-(.*)-(.*).html$ index.php?go=$2&id=$3 [L,NC] RewriteRule ^([0-9]+)/[^/]+/([0-9]+)/$ index.php?go=subcat&id=$1&pageNum_pages=$2 [L,NC] RewriteRule ^([0-9]+)/.*$ index.php?go=subcat&id=$1 [L,NC] Code (markup): but recently i decided to make this dir folder a sub domain...using DNS editor which is http://dir.mysite.com suddenly htaccess rewrite rule stopped working... in http://dir.mysite.com i dont understand... is there something missing? i checked out this http://tips-scripts.com/?tip=pointing#tip but couldnt understand anything.. please help.
i don't know much about rewrite, but the ones i have in sub domains all have the line after the RewriteEngine on
it's weird, dir.mysite.com/index.php?id=1&cat=2 works fine, all images are displayed, but dir.mysite.com/1/2 wont work!!