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

前端 未结 5 1419
悲哀的现实
悲哀的现实 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:21

    Try:

    FallbackResource /index.html
    

    or whatever the homepage is


    try:

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^ /index.html [L]
    

提交回复
热议问题