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
#
--------------------------------------------------------------------------------
#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
#