這裏是在Global.asax文件爲什麼IIS 6在與VS2008開發服務器協同工作時不會重定向我的請求?
Protected Sub Application_BeginRequest(ByVal sender As Object, ByVal e As System.EventArgs)
If LCase(Request.Path).Contains("/dir/") Then
Dim M As Match = Regex.Match(Request.Path, "/dir/(\w*)/", RegexOptions.IgnoreCase)
If M.Success Then
Response.Redirect("https://[mystore]/select.aspx?route=" & M.Groups(1).Value)
End If
End If
End Sub
的代碼,我可以運行它VS2008中沒有任何問題,但是當我將項目部署到運行IIS服務器6也不會重定向請求。