728x90
웹사이트 운영시 사이트에 설정이 안되있어 www를 붙고 안붙고 상관없이 접속이 되는 경우가 있다.
이럴 때 발생되는 문제는 외부로부터 페이지를 주고받을 때 www로 설정한다면 non-www에서는 정상적으로 실행되지 않을 수 있다.
이 때 우리는 non-www로 접속해도 www로 접속이되는 방법이 있다.
그것은 리눅스에서 .htaccess 파일에 코드를 넣으면 된다.
아래 코드블럭에서 확인해보자.
1. www로 Rewrite
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]
2. non-www로 Rewrite
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
728x90
'Infrastructure > Linux' 카테고리의 다른 글
Apache SSL 라이센스 인증서 갱신 방법 (0) | 2022.02.23 |
---|---|
Linux ] history 명령어 소개 (0) | 2022.02.03 |
WebtoB ] ./wscfl: error while loading shared libraries: libwbiconv.so: cannot open shared object file: No such file or directory (0) | 2022.01.28 |
WebToB ] webtobdir is set to the correct version of webtob (0) | 2022.01.28 |
웹사이트 도메인주소:기본 포트번호 #default port #웹사이트 포트번호 (0) | 2019.11.15 |