7

アクションを配置[RequireHttps]し、ユーザーが HTTP から HTTPS に切り替えると、後続のすべてのリンクは HTTPS のままになります...

HTTP に戻す方法はありますか?

4

3 に答える 3

6

技術的には、あなたはそれを行うことができます

のソースを見て、RequireHttpsAttributeそれを逆にすることができます。

実際には、おそらくすべきではありません

セッションがまだ生きている場合、通常は HTTP に戻ることはお勧めできません。これは、セッション ハイジャックなど、さまざまな攻撃の基盤となる可能性があります。

于 2012-02-20T22:22:00.883 に答える
2

このリンクには、特定のアクション メソッドに対して HTTPS から HTTP への切り替えを処理する方法のかなり詳細な説明があります。

http://blog.clicktricity.com/2010/03/switching-to-https-and-back-to-http-in-asp-net-mvc/

于 2012-02-20T22:15:51.367 に答える
1

私が使用する「ExitHttpsIfNotRequired」属性は次のとおりです。

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
public class RetainHttpsAttribute : Attribute
{
}

public class ExitHttpsIfNotRequiredAttribute : FilterAttribute, IAuthorizationFilter
{
    public void OnAuthorization(AuthorizationContext filterContext)
    {
        // Abort if it's not a secure connection  
        if (!filterContext.HttpContext.Request.IsSecureConnection) return;

        if (filterContext.ActionDescriptor.ControllerDescriptor.ControllerName == "sdsd") return;

        // Abort if it's a child controller
        if (filterContext.IsChildAction) return;

        // Abort if a [RequireHttps] attribute is applied to controller or action  
        if (filterContext.ActionDescriptor.ControllerDescriptor.GetCustomAttributes(typeof(RequireHttpsAttribute), true).Length > 0) return;
        if (filterContext.ActionDescriptor.GetCustomAttributes(typeof(RequireHttpsAttribute), true).Length > 0) return;

        // Abort if a [RetainHttps] attribute is applied to controller or action  
        if (filterContext.ActionDescriptor.ControllerDescriptor.GetCustomAttributes(typeof(RetainHttpsAttribute), true).Length > 0) return;
        if (filterContext.ActionDescriptor.GetCustomAttributes(typeof(RetainHttpsAttribute), true).Length > 0) return;

        // Abort if it's not a GET request - we don't want to be redirecting on a form post  
        if (!String.Equals(filterContext.HttpContext.Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase)) return;

        // Abort if the error controller is being called - we may wish to display the error within a https page
        if (filterContext.ActionDescriptor.ControllerDescriptor.ControllerName == "Error") return;

        // No problems - redirect to HTTP
        string url = "http://" + filterContext.HttpContext.Request.Url.Host + filterContext.HttpContext.Request.RawUrl;
        filterContext.Result = new RedirectResult(url);
    }
}
于 2013-11-24T16:13:02.690 に答える