輸入 | 類型 | 模式 | 是否忽略大小寫 | 備注 |
---|---|---|---|---|
{HTTPS} | 與模式匹配 | ^OFF$ | YES | 此項用來匹配你的請求是HTTPS還是HTTP |
{HTTPS_HOST} | 與模式不匹配 | ^(localhost) | YES | 如果你是本地的localhost不會重定向到SSL |
高級版(直接把偽靜態(tài)添加到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>
到此這篇關(guān)于IIS7 IIS8 http自動跳轉(zhuǎn)到HTTPS(80端口跳轉(zhuǎn)443端口)的文章就介紹到這了,更多相關(guān)http自動跳轉(zhuǎn)到HTTPS內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
標(biāo)簽:安陽 云南 佛山 晉中 南寧 衡水 畢節(jié) 巴中
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《IIS7 IIS8 http自動跳轉(zhuǎn)到HTTPS(80端口跳轉(zhuǎn)443端口)》,本文關(guān)鍵詞 IIS7,IIS8,http,自動,跳,轉(zhuǎn)到,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。