是否可以在 ASP.Net MVC 应用程序的控制器级别关闭 ssl?
有没有办法通过操作过滤器来关闭特定方法的 ssl?
例如...如果有人以某种方式访问了我的 Index 方法并打开了 ssl...我可以再次重定向到该方法并将其关闭吗?
Is there a way maybe via an action filter to turn off ssl for specific methods?
Example...if someone somehow hits my Index method and has ssl on...can I redirect to the method again and turn it off?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Global.asax.cs
您可以将相同的代码添加到操作过滤器:
Global.asax.cs
You could add the same code to an action filter: