我正在尝试为旧网站上的网址写一个htaccess重定向到新网站 旧网址在网址链接中有空格, 我试过了
RewriteCond %{REQUEST_URI} ^/office%20coffee/officecoffee.html [NC]
RewriteRule (.*) /coffee/portion-packs.html [R=301,NC,L]
但它没有重定向,这将是一个解决方案。
非常感谢任何帮助,请提前感谢。
答案 0 :(得分:1)
用这一行替换你的2行:
RewriteRule "^office coffee/officecoffee.html$" /coffee/portion-packs.html [R=301,NC,L]