过期(但不一定永久过期)URL 的 HTTP 响应代码

发布于 2024-10-16 21:37:43 字数 221 浏览 0 评论 0原文

我们的网站上有客户画廊,应该在一定时间内可用。一旦图库不再可用,我想将人们重定向到显示图库已过期的 URL。我们还希望能够在必要时重新打开画廊。

我正在尝试找出实现该行为的最佳方法。 302 重定向是最好的方法吗?首先进行重定向(而不是在同一 URL 处显示过期消息)是否合理?此时它是一个静态站点,但它位于 IIS (v. 6) 盒子上,因此如果我需要一个编程解决方案,我会做一些基于 ASP.NET 的事情。

We have client galleries on our website that are supposed to be available to a certain amount of time. Once the gallery is no longer available, I want to redirect people to a URL that says that the gallery is expired. We also want to ability to turn a gallery back on if necessary.

I'm trying to figure out the best way to implement that behavior. Is a 302 redirect the best way? Is it reasonable to do a redirect in the first place (rather than displaying the expired message at the same URL)? At this point it's a static site, but it's on an IIS (v. 6) box, so I'd be doing something ASP.NET based if I needed a programmatic solution.

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

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

发布评论

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

评论(1

渡你暖光 2024-10-23 21:37:43

尝试 307。这是一个临时重定向,而不是永久重定向。一旦您确定不再使用图库,您可以将其转换为 301。

在此处查看有关该主题的更多信息:http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

try 307. It's a temporary redirect, as opposed to a permanent one. once you're sure you're not using a gallery anymore, you could convert it to a 301.

see more on the subject here: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

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