更新于08/02/2022
我已经设置了一个自定义的404错误页面。以下是我的htaccess规则。
ErrorDocument 404 /not-found.php
RewriteEngine On
经过多次测试,我意识到它对除php页面以外的所有内容都能完美运行。如果是访问错误的目录或其他文件扩展名,它都可以正常工作。
自定义404错误页面成功显示的链接示例
- https://www.example.com/bad-file.html
- https://www.example.com/bad-folder/bad-file.html
- https://www.example.com/bad-folder/bad-file.php
- https://www.example.com/existing-folder/bad-file.html
- https://www.example.com/existing-folder/bad-image.jpg
自定义404错误页面无法显示的链接示例
- https://www.example.com/bad-file.php
- https://www.example.com/existing-folder/bad-file.php
我以为可能是我的htaccess中的一些重写规则导致的问题,但为了测试目的,我已经完全删除了它们,但问题仍然存在。
我终于找到了另一个遇到同样问题的人,并且提供的解决方案解决了我的问题。这是问题的帖子
htaccess中自定义的404错误处理程序对不存在的“.php”文件不起作用
这是使php扩展工作的解决方案: