Hello!
I have recently updated from V4 to V5 and from PHP to cgi. There is a single problem, that I need to fix. I would like to rewrite (htaccess) the following search queries:
(Currently, it seems that these three also work with "search.gci?..."
So I would like to have these URLs still working, but the results of the cgi should be displayed. There are two questions that need to be answered:
First, is there a specific problem with non-working parameters?
Second, if there is a faster htaccess rule for this, could someone please post it:
I need these fixes, because I have distributed search plugins for firefox with an update cycle of 1 week (and more)...
I have recently updated from V4 to V5 and from PHP to cgi. There is a single problem, that I need to fix. I would like to rewrite (htaccess) the following search queries:
domain.org/search/search.php?zoom_query=keyword1+keyword2
domain.org/search/search.php?zoom_sort=0&zoom_query=keyword1+keyword 2&zoom_and=1
domain.org/search/search.php?zoom_sort=0&zoom_cat=2&zoom_query=keywo rd1+keyword2&zoom_and=1
domain.org/search/search.php?zoom_sort=0&zoom_query=keyword1+keyword 2&zoom_and=1
domain.org/search/search.php?zoom_sort=0&zoom_cat=2&zoom_query=keywo rd1+keyword2&zoom_and=1
So I would like to have these URLs still working, but the results of the cgi should be displayed. There are two questions that need to be answered:
First, is there a specific problem with non-working parameters?
Second, if there is a faster htaccess rule for this, could someone please post it:
RewriteRule ^search/search.php\?(.*)$ http://www.domain.org/search/search.cgi?$1
Comment