Study
Apache(아파치) www. 설정 관련
메디츠
2024. 1. 20. 14:03
반응형
15년 5월 기준.
/usr/local/apache/conf/httpd.conf
에서 www. 설정을 해주면 아이피에도 www.이 붙음.
.htaccess에서 설정하기로 결정
.htaccess
# Rewrite Module
RewriteEngine On
# www. 자동 붙임
RewriteCond %{HTTP_HOST} ^studysenior\.com [NC]
RewriteRule ^(.*)$ http://www.studysenior.com/$1 [L,R]
.htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.studysenior\.com$ [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*)$ http://www\.studysenior\.com/$1 [L,R]
.htaccess 생성
윈도우에서 .htaccess 생성 후 rename
rename .htaccess.txt .htaccess
반응형