로컬환경에서 도메인이나 서브도메인 테스트를 해야 하는 경우 hosts 파일을 수정하는 경우가 많은데요, Mac환경에서 hosts파일을 수정하는 방법은 아래와 같습니다.
1. host파일 편집
sudo vim /etc/hosts
혹은
sudo vim /private/etc/hosts
예제
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 *.test.com
127.0.0.1 *.localhost
2. dns갱신
dscacheutil -flushcache
반응형
댓글