nginx https 如何将部分路径转移到 http 我有一个自己的网站,默认是走的 https,其中有一个路径需要走 http。 实现 在 nginx 的配置文件 https 中添加这个路径,并添加一个 rewrite 的指令。 比如我需要将 tools/iphone 的路径转成 http,就是下面这样配置 location / { try_files $uri $uri/ =404; } location /tools/iphone { rewrite ^(.*)$ http://$host$1 permanent; } 结果