サイトのURLをwww付きまたはhttpsに変更するには、.htaccessファイルを使用します。以下に具体的な設定方法を示します。
wwwなしから「https://www.example.com」にする
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com$
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
httpから「https://example.com」にする
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
これらの設定を適用すると、訪問者がwwwなしやhttpのURLにアクセスした場合、自動的にwww付きまたはhttpsのURLにリダイレクトされます。