IIS7配置SSL/https
view SSL binding configuration stored in HTTP.sys:
netsh http show sslcert
在某一站点上启用SSL:
C:\Windows\system32\inetsrv>appcmd set config "Default Web Site" -commitPath:APPHOST -section:access -sslFlags:[Ssl | SslNegotiateCert | SslRequireCert | Ssl128 | None]
-sslFlags的值要注意大小写
然后iis服务器里设置证书,再给站点做https的bindings,SSL Certificate选刚才建立的证书。
asp.net mvc 使用 SSL / https
首先注意到是,https在没有通过验证时,http的status code要返回:
Disable the Require secure channel option, or use HTTPS instead of HTTP to access the page. If you receive this error for a Web site that does not have a certificate installed, click the article number below to view the article in the Microsoft Knowledge Base:
我们可以创建Filter来完成验证工作:

1 /// <summary>
2 /// 提供安全连接的attribute
3 /// </summary>
4 public class RequireSSLBaseAttribute : ActionFilterAttribute
5 {
6 public bool IsRequireSSL { get; set; }
7
8 /// <summary>
9 /// 默认构造函数
10 /// </summary>
11 /// <remarks>
12 /// 只要添加该attribute就认为需要SSL
13 /// </remarks>
14 public RequireSSLBaseAttribute()
15 {
16 IsRequireSSL = true;
17 }
18
19 /// <summary>
20 /// 设置初始是否需要ssl
21 /// </summary>
22 /// <param name="isRequire">是否设置为使用SSL</param>
23 public RequireSSLBaseAttribute(bool isRequire)
24 {
25 IsRequireSSL = isRequire;
26 }
27
28 public override void OnActionExecuting(ActionExecutingContext filterContext)
29 {
30 if (this.IsRequireSSL /*如果需要SSL*/ &&
31 !filterContext.HttpContext.Request.IsSecureConnection)
33 {
34 //调用MakeActionResult()函数
35 filterContext.Result = MakeActionResult(filterContext.HttpContext);
36 }
37 }
38
39 /// <summary>
40 /// 默认的执行处理的方式
41 /// </summary>
42 /// <param name="httpContext">HttpContext</param>
43 /// <returns>返回ActionResult</returns>
44 protected virtual ActionResult MakeActionResult(HttpContextBase httpContext)
45 {
46 return new SSLUnauthorizedResult();
47 }
48 }
配合做一个SSL未验证的ActionResult:

1 /// <summary>
2 /// 返回ssl的错误状态值的Result
3 /// </summary>
4 public class SSLUnauthorizedResult : ActionResult
5 {
6 public override void ExecuteResult(ControllerContext context)
7 {
8 if (context == null)
9 {
10 throw new ArgumentNullException("context");
11 }
12
13 //SSL是403.4, SSL128是403.5
14 context.HttpContext.Response.StatusCode = 403;
15 context.HttpContext.Response.SubStatusCode = 4;
16 }
17 }
如果想在访问http://url/的时候跳转到https://url/可以这样继承一个:

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
· 使用C#创建一个MCP客户端