http접속시 https
본문
http접속시 https로 이동하게끔 했는데요.
그때 어떻게 했는지 모르겟는데, 네이버쇼핑에 입점할려면 http에서만 승인이 가능하다는데, 어떻게 http로 다시 돌릴수 있는지요?
<IfModule mod_expires.c>
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\. [NC,OR]
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
.htacess파일 만들어서 위의내용을 넣어도 안되네요.
!-->답변 2
아래 처럼 바꾸어 보세요.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\. [NC,OR]
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
https로 접속 시키려면
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SERVER_NAME} =domain.com [OR]
RewriteCond %{SERVER_NAME} =www.domain.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</IfModule>
또는
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
답변을 작성하시기 전에 로그인 해주세요.