htaccess 도메인 접속시 www 없애거나 만들기
페이지 정보
본문
.htaccess를 이용하여 www 도메인으로 리디렉션시키기
# redirect non-www to www
# Force www with htaccess
# 브라우저에 www 강제로 추가하기
RewriteCond %{HTTP_HOST} ^(?!www\.)(.+) [NC]
RewriteRule ^(.*) http://www.%1/$1 [R=301,NE,L]
www를 강제로 제거
# redirect www to non-www
# 브라우저에서 www 제거하기
RewriteCond %{HTTP_HOST} ^www\.(.+) [NC]
RewriteRule ^(.*) http://%1/$1 [R=301,NE,L]
// Source: stackoverflow
- 이전글htaccess 짧은주소 18.04.09
- 다음글livehelperchat 19.09.19
댓글목록
등록된 댓글이 없습니다.