This is how my apache httpd file looks like:
LoadModule rewrite_module modules/mod_rewrite.so <Directory / > Options FollowSymLinks AllowOverride ALL Order allow,deny allow from all </Directory> Now i try to execute this simple mod rule:
RewriteEngine on RewriteRule ^product-([0-9]+)\.html$ index.php?id=$1 This rewrite should happen when i press this link:
<a href="product-91.html">Press me</a>