自動由403.4的error page中轉進https協定中即可。
1.首先於"C:\WINDOWS\Help\iisHelp\common\"中編輯403-4.htm頁面
2.在<head>內
插入下列的scirpt
3.將檔案存檔後,以http進入至指定的頁面,即可
直接轉置進到https。
<head>
<script type="text/javascript">
var
url=window.location.href;
url=url.replace("http:","https:")
window.location.replace(url)
</script>
</head>
請先 登入 以發表留言。