0

我想将所有错误请求重定向到我识别的另一个 url。例如,如果用户输入http://www.mywebsite.com/unavailablepage.html,他不会得到 404 页面,而是会被重定向到另一个 url。我怎么能在.htaccess文件中做到这一点?提前谢谢。

4

2 回答 2

1

ErrorDocument 404 /your_page.html

于 2012-10-31T22:15:36.340 回答
0

将以下内容添加到您的 .htaccess 文件中,将 /404.php 更改为实际 404 页面的位置。

ErrorDocument 404 /404.php

有关详细信息,请参阅http://www.htaccessbasics.com/404-custom-error-page/ 。

于 2012-10-31T22:19:29.640 回答