gpt4 book ai didi

asp-classic - 经典 Asp 页面中的 URL 重定向

转载 作者:行者123 更新时间:2023-12-04 21:54:28 25 4
gpt4 key购买 nike

我有一个与重定向相关的问题

如果有人使用 http://mywebsite.com/,我想应用重定向那么 URL 将被重定向到 http://www.mywebsite.com/ .我知道这是一个 302 重定向,但我不知道如何在编码中应用它........什么 VBScript 可用于应用重定向?

我的网站是用 Classic ASP 和 VBScript 构建的……任何一段代码对我来说都更好

谢谢

最佳答案

使用 Request.ServerVariables("HTTP_HOST")获取主机部分,以便您可以检查它是否以 www. 开头或不。

如果没有,则发出 Response.Redirect()到适当的 URL,因为它会为您执行 302:

例如

If Left(Request.ServerVariables("HTTP_HOST"), 4) <> "www." Then
Dim newUri
'Build the redirect URI by prepending http://www. to the actual HTTP_HOST
'and adding in the URL (i.e. the page the user requested)
newUri = "http://www." & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("URL")

'If there were any Querystring arguments pass them through as well
If Request.ServerVariables("QUERY_STRING") <> "" Then
newUri = newUri & "?" & Request.ServerVariables("QUERY_STRING")
End If

'Finally make the redirect
Response.Redirect(newUri)
End If

上面做了一个重定向,确保请求的页面和查询字符串被保留

关于asp-classic - 经典 Asp 页面中的 URL 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4859316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com