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

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

问题描述

您好我怎么重定向错误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]

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

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