httpからhttpsにJavaScriptでリダイレクトさせる方法

webサーバに手出しできない、かつ、httpとhttpsで出し分けができない場合にhttpからhttpsにリダイレクトする方法です。 webサーバもmetaタグも使えないので、JavaScriptを使います。 コード <script type=”text/javascript”> if(location.protocol == ‘http:’) {...

続きを読む