Not Found (404)
Original request: /~netguard/jsp/colors/colrs.jsp
Not found request: /~netguard/jsp/colors/colrs.jsp
위와 같이 웹상에서 jsp파일을 못찾는다는 에러가 나더군요..
mod_jk.conf-auto 파일에서 아래와 같이 설정을 해주었는데..
어디가 틀린걸까요? 아니면 그외 더 필요한 것이 있나요?
#########################################################
# Auto configuration for the /netguard context starts.
#########################################################
#
# The following line makes apache aware of the location of the /netguard context
#
Alias /netguard "/home/netguard/public_html"
<Directory "/home/netguard/public_html">
Options Indexes FollowSymLinks
</Directory>
#
# The following line mounts all JSP files and the /servlet/ uri to tomcat
#
JkMount /netguard/servlet/* ajp12
JkMount /netguard/*.jsp ajp12
#
# The following line prohibits users from directly accessing WEB-INF
#
<Location "/netguard/WEB-INF/">
AllowOverride None
deny from all
</Location>
#
# The following line prohibits users from directly accessing META-INF
#
<Location "/netguard/META-INF/">
AllowOverride None
deny from all
</Location>