有时,当他们从其他网站自动链接时,会将br标记插入到我们的网址中。它会触发404页面。我想删除该标签。例如,它看起来像这样:
http://www.healthyeatingstartshere.com/moti<br />vation/healthy-eating-routine
这是我到目前为止修复它,但没有骰子:
RewriteRule ^(.*)<br%20/>(.*)$ http://www.healthyeatingstartshere.com/$1$2 [L,R=301]
有什么想法吗?
非常感谢,菲尔
答案 0 :(得分:2)
用反斜杠
逃离空间RewriteRule ^(.*)<br\ />(.*)$ http://www.healthyeatingstartshere.com/$1$2 [L,R=301]