这是我希望使用此示例 URL 实现的示例:
URL: http://www.example.com/directory1/search/index.php?pagesize=10&keywords=illinois&ord=az&category=&start=90
(关键字参数的位置可能会与其他参数的位置发生变化)
我希望这个重定向到:
URL: http://www.example.com/different_directory/search/keywords/illinois/
为了实现这一点,我尝试过:
RewriteCond %{QUERY_STRING} keywords=([^&]*)
RewriteRule ^directory1/search/index.php/$ http://www.example.com/different_directory/search/keywords/%1/? [R=301,NC,L]
这还没有解决。有人可以帮我解决我可能做错的事情吗?