如何将错误404重定向到主页与htaccess的?如何将、重定向、错误、主页

2023-09-02 20:32:34 作者:倦马也瘦

您好我怎么重定向错误404家页面的.htaccess?

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

例: site.com 如果写的 site.com/some_site_notforund ,而不是404重定向我们的主页

Example: site.com if write site.com/some_site_notforund instead of 404 redirects us to the main page

例2: sadistic.pl 如果写的 sadistic.pl/some_site_notfound 而不是404重定向我们当前页面

Example 2: sadistic.pl if write sadistic.pl/some_site_notfound instead of 404 redirects us to current page

推荐答案

尝试:

FallbackResource /index.html

或任何网页是

or whatever the homepage is

尝试:

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