.htaccess 리다이렉을 이용하려고 하는데 http , www 에서 https로 넘어가지 않습니다...
본문
http://code.i-harness.com/ko/q/d548fb
여기를 참조해서
.htaccess를
<IfModule mod_rewrite.c>
RewriteCond %{HTTPS} !=on
# This checks to make sure the connection is not already HTTPS
RewriteRule ^/?(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>
이렇게 적었는데요.
http로 접속하니 그대로 http네요..
어떻게 해야할지 막막합니다 ...
답변 1
이렇게 해보세요.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
답변을 작성하시기 전에 로그인 해주세요.