- 締切済み
htaccessでhttp⇒https topのみ
htaccessを使って、homeのみhttp⇒httpsにしたいのですが、ご存知の方いますか。 (例) http://www.abc.com ⇒ https://www.abc.com 下記のような他のページは転送を行う必要はありません。 不要(http://www.abc.com/dfg.html ⇒ https://www.abc.com/dfg.html) 下記に記載したものは、すべて転送されてしまいます。 RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule (.*)?$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R]
- みんなの回答 (1)
- 専門家の回答
みんなの回答
- taka451213
- ベストアンサー率47% (436/922)
回答No.1
こんばんは。 単純に・・・、 RewriteEngine on #レンタルサーバーなどは、ドキュメントルートに.htaccess置くので、おまじない・・・。 RewriteBase / RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R] じゃな。