将无效的网址重定向到404网页

时间:2015-08-17 19:10:45

标签: javascript html url web

我有一个网站http://html1.freeiz.com,如果输入的网站网址无效,我希望将用户重定向到http://html1.freeiz.com/Page_not_Found_404.html

1 个答案:

答案 0 :(得分:1)

如果您使用的是Apache,Linux或Unix服务器,可以使用.htaccess执行此操作:

  1. 在主目录中创建名为.htaccess的文件。 .很重要(如果还没有)。
  2. 输入ErrorDocument 404 /Page_not_Found_404.html
  3. http://www.404-error-page.com/404-create-a-custom-404-error-page-with-htaccess.shtml
    此外,大多数托管提供了执行此操作的工具。如果您使用的是cPanel,请按this article

      

    作为一般规则,如果您的服务器运行Unix或Linux,或任何版本的Apache Web服务器,它将支持.htaccess,尽管您的主机可能不允许您使用它。
      Source