【.htaccess】wwwあり統一、index.htmlなし、httpからhttpsへリダイレクト
htaccess設定の覚書 ・wwwありで統一 ・index.htmlなし ・httpからhttpsへのリダイレクト RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{THE_REQUEST} ^.*/index.(htm...