重定向未找到页面

重定向未找到页面

在 apache 中,
如何将未找到的页面重定向到 /?

Not Found

The requested URL /dsadsa was not found on this server.

答案1

ErrorDocument 404 /

将在输入的 URL 中提供 / 的内容。另一方面,如果您明确想要重定向用户,那么请执行以下操作...

ErrorDocument 404 /goback.html

...然后返回.html...

<meta http-equiv="refresh" content="0; url=http://example.com/">

答案2

你要后备资源

相关内容