404 page is not showing.. redirecting to homepage

DevilX

New member
Sep 28, 2019
13
2
3
my website is redirecting to the homepage on every 404 pages.
404.php --> Homepage
Random text--> Homepage
author page-->homepage
 

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
24,098
27,355
120
Check your 404 redirection rules in .htaccess (I suppose you're using an apache server)

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Last line redirects all to index (homepage). Change it to reflect your 404 page
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu