IT

자기 컴퓨터에 테터툴즈 설치하기

by MoA posted Aug 26, 2007
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
APM 설치 경로 > Server > Apache > conf > httpd.conf 파일을 편집기(메모장)으로 열기


--------------------------------------------------------------------------------


#LoadModule rewrite_module modules/mod_rewrite.so
#AddModule mod_rewrite.c

이 부분의 # 주석을 해제

LoadModule rewrite_module modules/mod_rewrite.so
AddModule mod_rewrite.c




--------------------------------------------------------------------------------


<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

위를 아래로 수정

<Directory />
    Options FollowSymLinks
    AllowOverride FileInfo
</Directory>


--------------------------------------------------------------------------------

# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
    AllowOverride None

이 부분을 아래로 수정

# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
    AllowOverride FileInfo

#