-2

I am using PHP version 7 and .htaccess file with Ubuntu operating system

www.abc.com/ghfgdfg to www.abc.com
danronmoon
  • 3,814
  • 5
  • 34
  • 56
Deep
  • 7
  • 3

2 Answers2

2

I would recommend using this site to generate a htaccess: https://www.htaccessredirect.net/

But to answer your question, you need to put this in your htaccess:

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

Check here documentation

Peace
  • 616
  • 2
  • 8
  • 24
Wimanicesir
  • 4,606
  • 2
  • 11
  • 30
0

add this to your .htaccess file.

 ErrorDocument 404 /

this redirects to all wrong pages to your homepage.