I couldn't figure out this problem. I got this rule correct: domain.com/folder/search/what/ever.html but when I clicked on the above link it will change to this one: domain.com/folder/search/what/search/what/ever.html any ideas?
Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^folder/search/([0-9]+)/([0-9]+)\.html$ search.php?c=$1&s=$2 [L] for domain.com/folder/search/what/ever.html or RewriteRule ^folder/search/([0-9]+)/([0-9]+)\.html$ folder/search/search.php?c=$1&s=$2 [L] if the script is in that directory. RewriteRule ^([0-9]+)/([0-9]+)\.html$ search.php?c=$1&s=$2 [L] for domain.com/what/ever.html
What other RewriteRules do you have set up ? I don't see any way that the Rule you posted above can change the URL visible in the address bar ( i.e. do a redirect ).