Supporting multiple search options with mod_rewrite
-
I have implemented tags on my blog with UltimateTagWarrior. I want to extend the search function so that I can search either posts or tags using the same search field.
Basically I went about implementing the search form with two submit buttons, one to submit
/?str=<blah>&submit=Searchand the other
/?str=<blah>&submit=TagNow I need to add rewrite rules to map the first to
/index.php/s=<blah>and the second to
/index.php/tag=<blah>I’ve tried using the following but it doesn’t seem to work:
RewriteRule ^?str=(.*)&submit=Search$ /index.php?s=$1 [QSA,L]
RewriteRule ^?str=(.*)&submit=Tag$ /index.php?tag=$1 [QSA,L]Can anyone give me some pointers?
The topic ‘Supporting multiple search options with mod_rewrite’ is closed to new replies.