我想将所有错误请求重定向到我识别的另一个网址。例如,如果用户键入http://www.mywebsite.com/unavailablepage.html
,他将不会获得404页面,而是将重定向到另一个URL。我怎么能在.htaccess
文件中这样做?提前完成。
答案 0 :(得分:1)
ErrorDocument 404 /your_page.html
答案 1 :(得分:0)
将以下内容添加到.htaccess文件中,将/404.php更改为实际404页面的位置。
ErrorDocument 404 /404.php
有关详细信息,请参阅http://www.htaccessbasics.com/404-custom-error-page/。