301重定向远程管理

发布于 2024-11-30 18:19:54 字数 174 浏览 0 评论 0原文

有没有在 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 技术交流群。

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

发布评论

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

评论(1

忘你却要生生世世 2024-12-07 18:19:54

您可以通过 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

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