문의드립니다.
본문
안녕하세요.
혹시 1개의 호스팅쓰고있는데요.
주 도메인 .htaccess https로 접속되게 설정하였습니다.
서브도메인 여러개 추가했습니다.
문제는 서브도메인도 같이https로 이동되게 됩니다.
.htaccess파일에서 소스로 도메인 따로따로 http,https로 수정가능한다고 하는데요
아시면 알려주시면 감사합니다.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
<Files 403.shtml>
order allow,deny
allow from all
</Files>
답변 2
RewriteCond %{HTTPS} off
조건문 위에,
특정 도메인 조건문을 추가해주면 됩니다.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?example.com$ [NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
트샷님 감사합니다. 덕분에 해결되었습니다. 꾸벅~~
답변을 작성하시기 전에 로그인 해주세요.