1. 미들웨어이야기/02. Apache
Apache favicon.ico 삭제 방법
OSSW(Open Source System SoftWare
2014. 6. 22. 04:42
favicon.ico HTTP 404 error 삭제 방법
•경로 : APACHE_HOME/conf
•파일 : httpd.conf
(1) error.log 파일 favicon.ico 로그 삭제 방법
- Error.log 파일을 보면 아래와 같이 출력된다
[Wed Aug 24 11:10:52 2011] [error] [client xxx.xxx.xxx.xxx] File does not exist:
/JBOSS_HOME/standalone/deployments/test.war/favicon.ico
- 조치방법
Redirect 404 /favicon.ico
<Location /favicon.ico>
ErrorDocument 404 "No favicon"
</Location>
by 차규철