現在、私の 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>