【发布时间】:2018-08-01 00:23:34
【问题描述】:
我有这个网址:
我想将其重定向到:
到目前为止,我能得到的最好结果就是能够重定向到 /about-us/,但它也会将查询字符串附加到末尾。如何重定向此 URL 并删除查询字符串?
到目前为止我已经尝试过:
Redirect 301 /about-us.html?7ec4b46ae6eaa4c756b968f5d2ef3c91=393a66ccb81d9b440d6b104f793224a8 https://www.example.co.uk/about-us/
和
RewriteCond %{REQUEST_URI} ^/about-us.html$ [NC]
RewriteRule ^(.*)$ about-us? [R=301,L]
非常感谢。
【问题讨论】:
标签: apache .htaccess redirect url-rewriting http-status-code-301