현재 내 httpd.conf 파일에는 다음이 있습니다.
ErrorDocument 404 /index.html
이것은 작동하지만 디버그 경로도 처리할 추가 규칙이 필요합니다. 예를 들어 내가 요청하면
http://www.mypage.com/debug/page-that-does-not-exist.html
다음으로 리디렉션하고 싶습니다.
/debug/index.html
내 문서 루트의 색인 대신. 이를 달성하는 가장 쉬운 방법은 무엇입니까?
답변1
<Directory /debug>
ErrorDocument 404 /debug/index.html
</Directory>