Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个包含许多子目录的 HTML 网站。我想为每个目录设置不同的 404 页面。
基本上我要做的是在每个目录中创建一个 index.php 文件并将其视为 404 页面。此页面将请求 url 并检查请求的文件名并相应地返回内容。
或者您可以使用以下命令创建.htaccess文件:
.htaccess
ErrorDocument 404 404.html
注意-之前没有反斜杠404.html,所以现在它总是在当前目录中查找错误页面。
404.html