.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 と入力するとブログ ページに移動します。サブフォルダーに移動しないようにするにはどうすればよいですか。