2011年3月3日木曜日

htaccessを利用してSSLページを設定する方法(http⇔https)

Webサイトの中で、特定のファイル、もしくは特定のフォルダのみを
SSL(https) 設定をし、それ以外のページは、非SSLページにする設定方法。
--------------------------------------------------------------
.htaccessファイル
--------------------------------------------------------------
RewriteEngine on

RewriteCond %{REQUEST_URI} .*/abc.php$ [OR]
RewriteCond %{REQUEST_URI} .*/def.php$ [OR]
RewriteCond %{REQUEST_URI} .*/dir/.*$ 
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

RewriteCond %{REQUEST_URI} !(.*/abc.php$)
RewriteCond %{REQUEST_URI} !(.*/def.php$)
RewriteCond %{REQUEST_URI} !(.*/dir/.*$)
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [R,L]
--------------------------------------------------------------
この場合、abc.php、def.php、dirディレクトリが
SSLになり、それ以外のページはhttpで表示される。
これで、httpとhttpsで被リンクが分散されることもないので、
SEO対策上もこれで問題なし。
参考 
U2Kの覚え書き  htaccessでSSLページの設定

0 件のコメント: