1

我正在尝试为从旧网站到新网站的 url 编写 htaccess 重定向,旧 url 在 url 链接中有空格,我试过了

    RewriteCond %{REQUEST_URI} ^/office%20coffee/officecoffee.html [NC]
RewriteRule (.*)  /coffee/portion-packs.html  [R=301,NC,L] 

但它不会重定向,这将是一个解决方案。

任何帮助将不胜感激,在此先感谢您。

4

1 回答 1

1

用这个替换你的 2 行:

RewriteRule "^office coffee/officecoffee.html$" /coffee/portion-packs.html  [R=301,NC,L]
于 2013-07-15T21:02:36.503 回答