2018年06月26日
Tweet
※以前にも記事を書いていました。
2011年07月19日:mod_rewrite でURLの統一
今回は以下の方法を利用しました。
※すべて www ありの httpsとなります。
RewriteEngine on
# non-www To www
RewriteCond %{HTTP_HOST} ^[ドメイン](.*)$ [NC]
RewriteRule (.*) https://www.[ドメイン]/$1 [R=301,L]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://www.[ドメイン]/$1 [R=301,L]
2011年07月19日:mod_rewrite でURLの統一
今回は以下の方法を利用しました。
※すべて www ありの httpsとなります。
RewriteEngine on
# non-www To www
RewriteCond %{HTTP_HOST} ^[ドメイン](.*)$ [NC]
RewriteRule (.*) https://www.[ドメイン]/$1 [R=301,L]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://www.[ドメイン]/$1 [R=301,L]
stock_value at 19:31│Comments(0)│技術