现在我的 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>