피카부 RSS 태그 관리 글쓰기 방명록 다시 시작하는 개발 블로그
2011-01-21 15:19:00
Alias란 웹브라우져를 통한 도메인 네임의 디렉토리 접근과 서버의 실제 디렉토리를 연결시켜 주는 기능이다.
Alias URL상대디렉토리주소 실제디렉토리주소
ex) Alias /foo/ "/home/user/foo/" 
적용 예: http://hostname/foo/test.php로 접속하여 /home/user/foo/test.php의 페이지를 보게끔 할 수 있다.

실제 디렉토리에 대한 세부 설정은 아래와 같이.
Alias /foo "/home/user/foo"
 
   options All
   AllowOverride All
   Allow From All
   AddHandler text/html .html
   AddHandler text/xml .xml
   AddType application/x-httpd-php .php