I have www.a.com (main), and addon domain www.b.com
Structure directory domain b is www.a.com/b.com
i want to make .htaccess setting :
www.b.com/prod_detail.php?Code=200
and be www.b.com/prod_detail/200
if i sett like this :
RewriteEngine On
RewriteRule ^prod_detail/([0-9][0-9])/$ /prod_detail.php?Code=$1
not working. Why? Thanks