How to redirect an error 404 to home page with .htaccess?

前端 未结 5 1413
悲哀的现实
悲哀的现实 2021-01-02 11:43

Hello how do I redirect an error 404 to a home page with .htaccess?

Example: site.com if write site.com/some_site_notforund instead

5条回答
  •  天涯浪人
    2021-01-02 12:30

    1. Make a .htaccess file in your root directory.
    2. Put this code into it and customize the RewriteRule.
    
        RewriteEngine On
        RewriteBase /
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^ http://127.0.0.1/dir/index.php [L]
    
    

    Works perfectly on my localhost.

提交回复
热议问题