URLをwwwありに統一して、ついでにSSL化でhttps://~に統一する方法
URLをwwwあり、そしてSSL化でhttps://~に統一したいときは、.htacessに下記の分を入力します。
1 2 3 4 5 |
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
これでURLを統一できます。
お試しください^^
公開日:2019年5月11日
最終更新日:2019年5月11日