我创建了一个 .html 维护文件,我希望当有人访问该站点时重定向到维护文件夹/index.html
我的代码:(根目录下的default.asp)
<%
If InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("abc.com") ) > 0 Then
Response.Redirect("/maintenance/")
ElseIf InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("web.com") ) > 0 Then
Response.Redirect("/web/")
End If
%>
它工作正常,如果我去 abc.com 但如果我输入 abc.com/blog 它会进入博客页面。我该如何防止它不会进入任何子文件夹。