IIS7/IIS8環境下全站https訪問的配置方法
IIS7/IIS8環境下全站https訪問的配置方法
一、配置web.config檔案
1.找到網站根目錄web.config檔案,替換一下內容(如果沒有此檔案可以建立一個);
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”HTTP to HTTPS redirect” stopProcessing=”true”>
<match url=”(.*)” />
<conditions>
<add input=”{HTTPS}” pattern=”off” ignoreCase=”true” />
</conditions>
<action type=”Redirect” redirectType=”Found”
url=”https://{HTTP_HOST}/{R:1}” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
2.重啟IIS測試訪問。
全球可信CA機構
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31483669/viewspace-2673508/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- IIS7 IIS8 自動跳轉到HTTPS – HTTPS SSL 教程HTTP
- 全站HTTPS升級系列(三)nginx配置全站HTTPSHTTPNginx
- 在LNMP環境下搭建Discuz論壇,開啟https,全站綠鎖LNMPHTTP
- 本地訪問虛擬機器(Vmware)環境下配置的域名虛擬機
- Tomcat全域性/區域性https訪問配置方法TomcatHTTP
- linux環境使用Certbot配置httpsLinuxHTTP
- WebSphere配置https協議訪問WebHTTP協議
- nginx配置https協議訪問NginxHTTP協議
- nginx 專案配置 https 訪問NginxHTTP
- Nginx配置VUE專案Https訪問NginxVueHTTP
- 如何用nginx配置https加密訪問?NginxHTTP加密
- 在本地環境配置 https 證書(mac)HTTPMac
- 使用openssl在windows 10下本地xampp配置https開發環境WindowsHTTP開發環境
- windows環境下memcache配置方法 詳細篇Windows
- 通過 Certbot 安裝 Let's Encrypt 證書,來實現全站的 HTTPS 訪問HTTP
- 透過 Certbot 安裝 Let's Encrypt 證書,來實現全站的 HTTPS 訪問HTTP
- tomcat8配置https協議訪問TomcatHTTP協議
- 前端使用Nuxt框架,配置本地https訪問前端UX框架HTTP
- Homestead 環境下,區域網域名訪問站點
- 通過 Certbot 安裝 Let's Encrypt 證書,實現免費的全站 HTTPS 訪問HTTP
- Maven環境下MyBatisGenerator 配置MavenMyBatis
- Windows 下 Laravel 環境配置WindowsLaravel
- linux下配置java環境LinuxJava
- CentOS下Ant環境配置CentOS
- Webpack下多環境配置的思路Web
- docker下springboot的多環境配置DockerSpring Boot
- nginx配置ssl實現https訪問 小白文NginxHTTP
- phpstudy配置本地ssl證照,訪問https://127.0.0.1PHPHTTP127.0.0.1
- windows系統配置nginx環境執行pbootcms訪問首頁直接404的問題WindowsNginxboot
- RedHat 7.2配置LAMP環境下的redius+mysql+openvpn環境RedhatLAMPMySql
- Kubernetes叢集中配置Ingress支援HTTPS訪問(一):cfsslHTTP
- Linux下Java環境變數的配置LinuxJava變數
- Linux 下配置 node + mongodb 環境LinuxMongoDB
- linux環境下ssh 互信配置Linux
- 實現全站HTTPS加密HTTP加密
- 記錄一次 LNMP 環境搭建到 Https 配置LNMPHTTP
- 【環境踩坑】ubuntu下jupyter的環境設定問題Ubuntu
- nginx反向代理、負載均衡配置與linux環境下的安裝及通過ip和域名訪問nginxNginx負載Linux