0

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

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

到目前为止,这是我要解决的问题,但没有骰子:

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

有什么想法吗?

非常感谢,菲尔

4

1 回答 1

2

用反斜杠转义空格

RewriteRule ^(.*)<br\ />(.*)$ http://www.healthyeatingstartshere.com/$1$2 [L,R=301]
于 2012-10-17T17:32:50.780 回答