301 重定向库
我正在更新我的网站,很多页面都会有新的网址。
我现在使用的是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试 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.