在 404 错误自定义页面中显示失败 link

Show failure link in 404 error custom page

是否可以向用户显示 link 或无法通过 404 错误自定义页面的 html 代码找到的文件?

我问了google,没有找到任何信息。

我也不知道 php 现在想知道 如果只有 htaccess 和 html?

才有可能

如果没有,我在使用 htaccess 重定向时可以用 php 做什么? 有什么简单的方法吗?

我的 htaccess:

ErrorDocument 404 /funktion.fehler.php

如果您使用的是错误文档:

ErrorDocument 404 /funktion.fehler.php

然后您可以使用几个 php 变量。类似于:

print('The URL ' . $_SERVER['REQUEST_URI'] . ' does not exist');

您也可以使用$_SERVER['REDIRECT_URL']