我正在努力寻找带有手写单词的搜索重定向(非动态),但从来没有相同的单词
我需要重定向一下:
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
知道“兔子”只是一个例子,可以是任何一个词。
答案 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]