如何使用 .htaccess 将错误 404 重定向到主页? [英] How to redirect an error 404 to home page with .htaccess?

查看:39
本文介绍了如何使用 .htaccess 将错误 404 重定向到主页?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,我如何将 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

或任何主页

试试:

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

这篇关于如何使用 .htaccess 将错误 404 重定向到主页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆