Hi, could anyone help (and how much?). My setup is: /shoot.php?setID=90 I'd like it to change to: /person1-shoot1/ The Person1 and Shoot1 are the variables in the SetID...
RewriteEngine on RewriteRule ^product/([^/\.]+)/?$ product.php?id=$1 [L] Another example, rewrite from: www.yoursite.com/script.php?product=123 to www.yoursite.com/cat/product/123/ RewriteRule cat/(.*)/(.*)/$ /script.php?$1=$2
Doesn't work sorry, the page doesn't change. So you're saying: /shoot.php?setID=90 RewriteRule ^shoot/([^/\.]+)/?$ shoot.php?setID=$1 [L]
Just occured to me that he may think that the URLs in the script will change automagically with the htaccess rule.