본문 바로가기
그누보드,영카트

카페24 http 를 https 로 변경 리다이렉트 그누보드5

by 씨엔아이소프트 2024. 5. 2.
반응형

카페24의 www 폴더에 .htaccess 파일을 아래의 내용으로 생성합니다.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{ENV:HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

 

반응형

댓글