301重定向远程管理
有没有在 IIS 中远程管理 301 重定向的好方法?我最近拥有了一个小型零售 ASP.NET 网站,我的任务是为我们的 SEO 提供商提供更改旧产品等重定向的能力,而无需直接访问服务器,也不需要我们进行更改。
该网站是 ASP.NET 4.0,在带有 IIS 7 的 Windows Server 2008 上运行。
Is there a good way of remotely managing 301 redirects in IIS? I have recently taken ownership of a small retail ASP.NET website I've been tasked with providing our SEO provider the ability to change redirects for old products etc without having direct access to the server, or needing us to make the change.
The website is ASP.NET 4.0, running on Windows Server 2008 with IIS 7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 app.config 文件维护所需重定向的列表 - 有一个模块可以接受请求并根据文件检查请求,
如果存在匹配,则可以重定向到已知位置。问题是它可能有点慢 - 您可以将重定向存储在数据库中作为替代方案,而不是配置文件
you could maintain a list of the required redirects via an app.config file - have a module which takes the request and checks the request against the file
if there is a match then you could redirect to a known place. The trouble is that it could be a little slow - instead of a config file you could store the redirects in the database as an alternative