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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- tomcat下配置https環境TomcatHTTP
- IIS7 IIS8 自動跳轉到HTTPS – HTTPS SSL 教程HTTP
- 全站HTTPS升級系列(三)nginx配置全站HTTPSHTTPNginx
- 在LNMP環境下搭建Discuz論壇,開啟https,全站綠鎖LNMPHTTP
- 本地訪問虛擬機器(Vmware)環境下配置的域名虛擬機
- HTTPS訪問:weblogic下配置SSLHTTPWeb
- Linux環境下Swap配置方法Linux
- mac環境下配置nginx反向代理,https協議MacNginxHTTP協議
- Centos6.3下Apache配置https證書訪問CentOSApacheHTTP
- Windows環境下phpMyAdmin的安裝配置方法WindowsPHP
- Tomcat全域性/區域性https訪問配置方法TomcatHTTP
- linux環境使用Certbot配置httpsLinuxHTTP
- nginx 專案配置 https 訪問NginxHTTP
- WebSphere配置https協議訪問WebHTTP協議
- nginx配置https協議訪問NginxHTTP協議
- windows環境下memcache配置方法 詳細篇Windows
- XCode專案配置可訪問 非 https 介面的方法XCodeHTTP
- Ubuntu16.04環境下MySQL5.7安裝&配置以及遠端訪問UbuntuMySql
- 使用openssl在windows 10下本地xampp配置https開發環境WindowsHTTP開發環境
- 在本地環境配置 https 證書(mac)HTTPMac
- Nginx配置VUE專案Https訪問NginxVueHTTP
- 如何用nginx配置https加密訪問?NginxHTTP加密
- 通過 Certbot 安裝 Let's Encrypt 證書,來實現全站的 HTTPS 訪問HTTP
- 透過 Certbot 安裝 Let's Encrypt 證書,來實現全站的 HTTPS 訪問HTTP
- Maven環境下MyBatisGenerator 配置MavenMyBatis
- Windows 下 Laravel 環境配置WindowsLaravel
- Mac環境下AS配置GitMacGit
- NVM,Windows下環境配置Windows
- ubuntu下golang環境配置UbuntuGolang
- windows下JDK環境配置WindowsJDK
- Webpack下多環境配置的思路Web
- nginx環境下,mediawiki靜態訪問路徑設定Nginx
- 【環境配置】Geoserver如何訪問shapefile或PostGIS資料庫Server資料庫
- 前端使用Nuxt框架,配置本地https訪問前端UX框架HTTP
- 通過 Certbot 安裝 Let's Encrypt 證書,實現免費的全站 HTTPS 訪問HTTP
- windows系統配置nginx環境執行pbootcms訪問首頁直接404的問題WindowsNginxboot
- linux下配置java環境LinuxJava
- ubuntu下hadoop環境配置UbuntuHadoop