我正在使用PHP版本7和.htaccess文件与Ubuntu操作系统
www.abc.com/ghfgdfg to www.abc.com
将其添加到.htaccess文件中。
ErrorDocument 404 /
这会重定向到您主页的所有错误页面。
我建议使用这个网站来生成一个htaccess:https://www.htaccessredirect.net/
但要回答你的问题,你需要把它放在你的htaccess中:
Redirect 404 www.abc.com/ghfgdfg www.abc.com
点击这里documentation
把它放进你的.htaccess
ErrorDocument 404 "<script>window.location.replace('http://www.example.com/');</script>"
(替换上面的url)