[APMSETUP] 테터툴즈 1.x 설치시 설정 변경(mod_rewrite 에러 해결방법)
Q n A 2007. 5. 24. 15:48 |4단계에서 이런 에러가 계속 뜹니다.
==================================================================
Apache Rewrite Engine
Rewrite를 사용할 수 없습니다.
다음 항목을 확인하십시오.
웹서버 설정에 mod_rewrite의 로딩이 포함되어야 합니다.
예: LoadModule rewrite_module modules/mod_rewrite.so
웹서버 설정의 이 디렉토리에 대한 Options 항목에 FollowSymLinks가 포함되거나 All이어야 합니다.
예: Options FollowSymLinks
예: Options All
웹서버 설정의 이 디렉토리에 대한 AllowOverride 항목에 FileInfo가 포함되거나 All이어야 합니다.
예: AllowOverride FileInfo
예: AllowOverride All
위 2와 3의 문제는 아래 내용을 웹서버 설정에 포함시켜 해결할 수 있습니다.
<Directory "/www">
Options FollowSymLinks
AllowOverride FileInfo
</Directory>
==================================================================
해결방법 ->
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>
로 수정 합니다.
<Directory "C:/APM_Setup/htdocs">
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options FollowSymLinks MultiViews ExecCGI
#
# 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
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
이 부분을 찾으셔서
<Directory "C:/APM_Setup/htdocs">
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options FollowSymLinks MultiViews ExecCGI
#
# 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
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
로 수정 합니다.
이제 서버를 다시 시작하신 후
설치를 진행 합니다.
출처 : 근사모 The Pro-Style Group( http://www.apmsetup.com/board.php?ct=43&bid=105&bs_type=&bs_str=&pg=0&mode=view&uid=7245 )
==================================================================
Apache Rewrite Engine
Rewrite를 사용할 수 없습니다.
다음 항목을 확인하십시오.
웹서버 설정에 mod_rewrite의 로딩이 포함되어야 합니다.
예: LoadModule rewrite_module modules/mod_rewrite.so
웹서버 설정의 이 디렉토리에 대한 Options 항목에 FollowSymLinks가 포함되거나 All이어야 합니다.
예: Options FollowSymLinks
예: Options All
웹서버 설정의 이 디렉토리에 대한 AllowOverride 항목에 FileInfo가 포함되거나 All이어야 합니다.
예: AllowOverride FileInfo
예: AllowOverride All
위 2와 3의 문제는 아래 내용을 웹서버 설정에 포함시켜 해결할 수 있습니다.
<Directory "/www">
Options FollowSymLinks
AllowOverride FileInfo
</Directory>
==================================================================
해결방법 ->
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>
로 수정 합니다.
<Directory "C:/APM_Setup/htdocs">
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options FollowSymLinks MultiViews ExecCGI
#
# 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
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
이 부분을 찾으셔서
<Directory "C:/APM_Setup/htdocs">
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options FollowSymLinks MultiViews ExecCGI
#
# 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
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
로 수정 합니다.
이제 서버를 다시 시작하신 후
설치를 진행 합니다.
출처 : 근사모 The Pro-Style Group( http://www.apmsetup.com/board.php?ct=43&bid=105&bs_type=&bs_str=&pg=0&mode=view&uid=7245 )
'Q n A' 카테고리의 다른 글
[제로보드] 새로운 계정(B)에 phpmyadmin 설치 및 실행 (DB복구) (0) | 2007.05.25 |
---|---|
[테터툴즈] 테터툴즈 사용자 추가 Code (0) | 2007.05.24 |
[APMSETUP] phpMyAdmin root 패스워드 변경시 에러 해결 방법 (0) | 2007.05.24 |
[바탕화면] 작업표시줄 시계 표시 바꾸기 (0) | 2007.05.08 |
[OCP 오라클(Oracle)]오라클자격증 OCP의 취득목적별 학원판별법 (0) | 2007.05.08 |