0

以下在我的本地主机上工作正常,但在服务器上不行。我不断收到找不到页面的错误。有任何想法吗?我在 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
4

1 回答 1

0

代替 ”/”

   Context.RewritePath("Default.aspx") ' TEST
于 2012-08-17T14:06:15.310 回答