본문 바로가기

program study

[아파치] 디렉토리 구조로 만들기

가상호스트 설정에서 폴더 옵션

#디렉토리 구조
<Directory "/var/webfiles/zado/u">
        Options Indexes FollowSymLinks MultiViews
</Directory>

계속 폴더 접근 권한 없다는 에러가 난다면..

아파치 welcome.conf
#indexes 구조에서 - 제거
<LocationMatch "^/+$">
    Options Indexes
    ErrorDocument 403 /error/noindex.html
</LocationMatch>

'program study' 카테고리의 다른 글

[리눅스] crontab 사용법  (0) 2010.11.19
[아파치] rsync 명령어  (0) 2010.11.18
[자바스크립트] 팝업 자동스크롤링  (0) 2010.11.17
[자바스크립트] replaceAll 구현  (0) 2010.11.15
[JQuery] datepicker  (0) 2010.11.05