다른 분들의 네이버 지식 검색을 정리한 것입니다.



혹시 C: 는 잘 열리는데, 내 컴퓨터에서 다른 드라이브들은 더블 클릭시에 "연결 프로그램"이 뜬다면, 레지스트를 수정해주면 됩니다.
단, 이 경우는 드라이브의 경우에만 해당됩니다.

1. 시작 -> 실행
    "regedit" 입력

2. 레지스트리 중에 "HKEY_CLASSES_ROOT"를 펼침

3. 이중에 "Drive"라는 키를 찾아서 하위까지 모두 삭제

4. regedit를 닫고, 현재 열려진 내 컴퓨터를 모두 닫음

5. 다시 내컴퓨터를 실행하여 확인하면 정상임

이 작업은 초기 상태로 돌리는 것이라 하네요.
사실, 정확한 이유는 잘 모릅니다. (따라해본것 뿐)

만약, 폴더에서 같은 현상이 벌어지면, "HKEY_CLASSES_ROOT"에서 "Directory"의 Shell의 기본값을 "open"으로 바꾸어 주면 된다고 하네요.

이상이였습니다.

출처 : apmsetup Tip&Tech 게시판
원문 : 근땅e님의 글


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>

로 수정 합니다.

이제 서버를 다시 시작하신 후
설치를 진행 합니다.

+ Recent posts