重定向包含流氓字符的网址

发布于 2024-12-17 12:48:45 字数 799 浏览 0 评论 0原文

我们的网站上有一些抓取错误,我正在尝试编写重写规则来修复它们。我想说的是任何以 http://www.mysite.com/co 开头的网址它应该被重定向到一个单一的网址。

RewriteEngine On
RewriteBase /

RewriteRule ^co http://www.othersite.com/ [R=301,NC,L]

但是,这不适用于以下网址

http://www.mysite.com/community/membe%3Cbr%3E%3Chr%3EタグOKです。%3Cbr%3E%3Ctextarea%20name=

http://www.mysite.com/community/membe%3Cbr%3E%3Chr%3E%E3%82%BF%E3%82%B0OK%E3%81%A7%E3%81% 99%E3%80%82%3Cbr%3E%3Ctextarea%20name=

有什么想法可以实现这一点吗?

谢谢

詹姆斯

We have some crawl errors on our site and I'm trying to write a rewrite rule to fix them. What I want to say is that any url which begins with http://www.mysite.com/co that it should be redirected to a single url.

RewriteEngine On
RewriteBase /

RewriteRule ^co http://www.othersite.com/ [R=301,NC,L]

However, this doesn't work for the following urls

http://www.mysite.com/community/membe%3Cbr%3E%3Chr%3EタグOKです。%3Cbr%3E%3Ctextarea%20name=

http://www.mysite.com/community/membe%3Cbr%3E%3Chr%3E%E3%82%BF%E3%82%B0OK%E3%81%A7%E3%81%99%E3%80%82%3Cbr%3E%3Ctextarea%20name=

Any ideas how I can achieve this?

Thanks

James

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你爱我像她 2024-12-24 12:48:45

也许最简单的方法是白名单 - 重定向任何包含不在您的允许字符列表中的字符的内容。在此示例中,假设您只允许使用小写字母、数字 4 和斜杠:

RewriteEngine On
RewriteBase /

RewriteRule [^a-z4/] http://example.com/redirect-to-here [R=301,L]

Perhaps the easiest way would be whitelisting - redirect anything which contains characters not on your list of allowed characters. In this example, let's say you'd allow only lowercase letters, number 4, and the slash:

RewriteEngine On
RewriteBase /

RewriteRule [^a-z4/] http://example.com/redirect-to-here [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文