https://www.freecodecamp.org/news/how-to-redirect-http-to-https-using-htaccess/
Redirect All Web Traffic 🌝
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]
</IfModule>
점으로 시작하는 파일 이름은 대개 숨겨진 파일입니다. 이는 일반적으로 기본적으로 표시되지 않음을 의미합니다.
이 파일을 보려면 FTP 클라이언트 또는 호스팅 파일 관리자에서 "숨김 파일 표시"를 설정하기 만하면됩니다
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URl}/$1 [R,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
위의 소스를 적용할 경우, 기존에 http://~ 의 절대경로로 사용된 이미지들이 사파리에서 깨지는 현상 발생 (크롬에서는 제대로 보여짐)
'non-www' to 'www'
https://comodosslstore.com/resources/do-i-need-a-different-ssl-certificate-for-www-and-without/
Almost all CAs can secure both WWW and non-WWW variations with a single certificate.
Apparently, cafe24 only covers 'www domain'.🤦🏻♀️
One of the easiest ways to get around this problem is to redirect your visitors from the non-WWW domain to the WWW version. Just use 301 redirects and you’ll be fine. 💆🏻♀️💆🏻♀️
https://www.a2hosting.com/kb/security/ssl/using-www-and-non-www-domains-with-an-ssl-certificate
The following lines demonstrate how to redirect visitors who enter a domain name without the www prefix to a secure connection. With these settings enabled on your web site, visitors who go to example.com or www.example.com (where example.com represents your domain) both obtain an SSL connection:
RewriteEngine on
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
https://geekflare.com/redirect-non-www-to-www-non-www/