logo

Why I'm getting 404 File Not Found by clicking the categories of my website? Print

  • 0

"404 File Not Found"

 

To solve this error please add the below codding in your .htaccess file :

 

 

 

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

 

 

 

 

If still you are Facing any issue Please Click Here to raise a ticket to our Support team

 


Was this answer helpful?
Back