Forum Moderators: phranque
RewriteCond %{QUERY_STRING} (.*)$RewriteRule item_([0-9]+)(\.[a-z]{3,4})?(.*)$index.php?_a=viewtiem&item_id=$1&%1 [NC]
How would I write the above to replace an apostrophe with a space? For example, change women's to womens?
Thanks in advance.
Tim
Also, be aware that you could code that rule much more efficiently as one line:
RewriteRule item_([0-9]+)(\.[a-z]{3,4})? index.php?_a=viewtiem&item_id=$1 [NC,[b]QSA,L[/b]]
Jim