私はasp.netで簡単なWebサイトに取り組んでいます。特定の AD グループのユーザーのみが許可されるように、サイドへのアクセスを制限したいと考えています。私はそれをしました、そしてそれはうまくいきます。しかし、AD グループに属していないユーザーがサイトにアクセスしようとすると、ログイン プロンプトが表示されます。ログイン プロンプトを表示する代わりに、許可されていないユーザーをカスタム ページにリダイレクトするにはどうすればよいですか?
以下は私のweb.configです。コードの最下部は、私が試したものですが、機能しませんでした。
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<authentication mode="Windows"/>
<authorization>
<allow roles="DOMAIN\GROUP"/>
<deny users="*"/>
</authorization>
</system.web>
<location path="AccessDenied.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>
これを Global.asax.cs に追加しました。
protected void Application_EndRequest(Object sender, EventArgs e)
{
if (HttpContext.Current.Response.Status.StartsWith("401"))
{
HttpContext.Current.Response.ClearContent();
Server.Execute("AccessDenied.aspx");
}
}
何か案は ?
編集: 投稿されたソリューションのいくつかを試しましたが、機能しませんでした。 しかし、私はこのコードで動作しました:
void Application_EndRequest(object sender, System.EventArgs e)
{
if (((Response.StatusCode == 401)
&& (Request.IsAuthenticated == true)))
{
Response.ClearContent();
Response.Redirect("~/AccessDenied.aspx");
}
}
}