Reputation: 69920
Is there a way to rewrite an URL like
in
using mod_rewrite
in Apache2?
Upvotes: 0
Views: 563
Reputation: 4585
RewriteRule /products/([0-9]+)/([a-z]+) /getProduct.php?id=$1&mode=$2
For more information search google for mod_rewrite tutorials.
Upvotes: 4