Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我犯了一个错误,不小心在我的一个网址中包含了一个空格,它被谷歌索引了。有谁知道我如何用空白空间 301 重定向 url?我已经尝试了以下但似乎没有工作
RewriteRule ^white-space%20-here(.*)$ http://abc.com/no-white-space-here$1 [R=301]
谢谢。
您需要匹配空格,而不是 URL 编码的%20. URL 在通过重写引擎发送之前被解码。
%20
RewriteRule ^white-space\ -here(.*)$ http://abc.com/no-white-space-here$1 [R=301]