i want to rewrite a rule for my products.
i want to use the id and name in the url separated by a dash like this:
123-name means product id = 123 and name = name
so in my php i can get the $_GET[id] and then query my database using this id like this:
$sql = "SELECT * from Products Where productid = " . $_GET[id];
here's what i have:
RewriteEngine On
RewriteRule ^products/([0-9+])\-([a-z]+)/?$ products.php?id=$2 [NC,L]
but when i put this as url, i get a 404
why?