301 重定向库

发布于 2024-08-10 18:12:20 字数 109 浏览 2 评论 0原文

我正在更新我的网站,很多页面都会有新的网址。

我现在使用的是 IIS7,有一种方法可以做到这一点,但是是否有一个库可以快速添加 301 重定向,并且可以在 IIS6 和 IIS7 中工作?

I am updating my site and there will be new urls for alot of pages.

I now the with IIS7, there is a way to do this with , but is there a library out there that allows adding 301 redirects quickly that works in both IIS6 and IIS7?

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

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

发布评论

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

评论(1

甜心小果奶 2024-08-17 18:12:20

您可以尝试 Iconics 提供的 IIS 的 ISAPI 重写模块。我的运气有限。

http://www.codeplex.com/IIRF

如果是我,我只会处理 BeginRequest我的 global.asax 中的事件,并根据一些正则表达式规则甚至暴力字典手动重定向 301。当然,如果不匹配,您会希望找到某种方法提前退出,以确保您的网站速度不慢。

You can try the ISAPI Rewrite module for IIS, from Iconics. I've had limited luck with it.

http://www.codeplex.com/IIRF

It it were me, I would just handle the BeginRequest event in my global.asax, and manually redirect with 301, depending on some regex rules or maybe even a brute-force dictionary. Of course you would want to find some way to exit early if it didn't match to make sure your site isn't slow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文