在htaccess中重定向带有br标记的URL

时间:2012-10-17 12:47:50

标签: .htaccess redirect rewrite

有时,当他们从其他网站自动链接时,会将br标记插入到我们的网址中。它会触发404页面。我想删除该标签。例如,它看起来像这样:

http://www.healthyeatingstartshere.com/moti<br />vation/healthy-eating-routine

这是我到目前为止修复它,但没有骰子:

RewriteRule ^(.*)<br%20/>(.*)$ http://www.healthyeatingstartshere.com/$1$2 [L,R=301]

有什么想法吗?

非常感谢,菲尔

1 个答案:

答案 0 :(得分:2)

用反斜杠

逃离空间
RewriteRule ^(.*)<br\ />(.*)$ http://www.healthyeatingstartshere.com/$1$2 [L,R=301]