웹사이트 www 주소처리하기

www 주소처리하기

홈페이지 제작시 항상 겪는 문제중 하나

 www.도메인.com 
도메인.com

위 주소로 각각 접속시 로그인이 풀리거나 페이지에 문제가되는 경우가있다


.htacess 에 아래 코드 추가

# www remover (.htaccess)
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]


https://도메인.com => https://www.도메인.com 으로 변경하기

.htacess 에 아래 코드 추가

# www remover (.htaccess)
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

#https
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

댓글

이 블로그의 인기 게시물

html b 와 strong 차이

블로거에서 ads.txt 파일 설정하기