尝试设置一些重定向,如下所示:
来自 http://sub.example.com/foo/foo.php?letter=Al&last=40 至 https://www.example.com/foo/bar
当我在浏览器中运行源URL时,apache将我重定向到 https://www.example.com/?letter=Al&last=40而非https://www.example.com/foo/bar
这是我在virtualhost.conf中拥有的
RewriteEngine On
RewriteCond %{QUERY_STRING} ^letter=Al&last=40$
RewriteRule ^$ https://www.example.com/foo/bar? [R=301,L]
到目前为止,我所读过的所有内容都证实这应该可行。
PS:这是针对Apache服务器版本:Apache / 2.4.18