如果在PHP中输入无效的URL路径,如何重定向网站? [重复]

问题描述 投票:-2回答:3

我正在使用PHP版本7和.htaccess文件与Ubuntu操作系统

www.abc.com/ghfgdfg to www.abc.com
php .htaccess cakephp-3.0
3个回答
0
投票

将其添加到.htaccess文件中。

 ErrorDocument 404 /

这会重定向到您主页的所有错误页面。


2
投票

我建议使用这个网站来生成一个htaccess:https://www.htaccessredirect.net/

但要回答你的问题,你需要把它放在你的htaccess中:

Redirect 404 www.abc.com/ghfgdfg www.abc.com

点击这里documentation


0
投票

把它放进你的.htaccess

ErrorDocument 404 "<script>window.location.replace('http://www.example.com/');</script>"

(替换上面的url)

© www.soinside.com 2019 - 2024. All rights reserved.