Hello, I've got help with the regular expressions in this forum but now I've hit a new problem. Normally my dynamic links are: product.php?parent_id=gadgets&product_id=10 For this particular link my mod rewrite is: product/gadgets/10/sony-playstation-3 And related rewrite rule: RewriteEngine On RewriteRule ^product/(.[^/]+)/([0-9]+)/(.+)$ product.php?parent_id=$1&product_id=$2 Code (markup): But when I click on the link, I get error (page not found). What might be the problem? Thanks
By the way, I have been playing with the simple rules as: RewriteEngine on RewriteRule ^phones /phones.php Code (markup): For mydomain.com/phones However I get Error 500. When it is RewriteEngine on RewriteRule ^mobiles /phones.php Code (markup): There is no problem.