以下在我的本地主机上工作正常,但在服务器上不行。我不断收到找不到页面的错误。有任何想法吗?我在 web.config 中也有一个自定义的 mime 类型设置,但这无关紧要。
'--------------------------------------------------------
'Sub Application_BeginRequest()
'--------------------------------------------------------
'.
'.
'.
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
'----------------------------------------------------
'Redirect
'----------------------------------------------------
'.
'.
'.
If Request.RawUrl.Contains(".page") Then
Context.RewritePath("/Default.aspx") ' TEST
End If
End Sub