htaccess使用关键字重定向搜索查询字符串

时间:2014-09-17 09:40:48

标签: php string .htaccess search redirect

我正在努力寻找带有手写单词的搜索重定向(非动态),但从来没有相同的单词

我需要重定向一下:

http://www.example.com/search/results.html?search_in_description=1&keyword=rabbit

对此:

http://www.example.com/recherche?orderby=position&controller=search&orderway=desc&search_query=rabbit

知道“兔子”只是一个例子,可以是任何一个词。

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^search_in_description=1&keyword=([^&]+)
RewriteRule ^search/results.html$ /recherche?orderby=position&controller=search&orderway=desc&search_query=%1 [L,R=301,NE]