November 25, 2019
2min Read
Domantas G.

Running into “404 Page Not Found“ error when accessing your website? You probably have an issue with broken permalinks. In this article, we will help you find the culprit behind this error and provide you with a comprehensive guide on how to fix it.
Various causes may trigger broken permalinks on your website.
Here are several methods on how you can fix broken permalinks in WordPress.
The simplest way to deal with this problem is by resetting the permalinks structure:

If you’re still getting a “404 Page Not Found” error, let’s try other remaining methods.
Deactivate the most-recently installed or updated plugin that might be triggering the error. Otherwise, you can also remove all the installed plugins altogether:
In case none of the options solved your broken permalinks issue, the issue can be related to your .htaccess file’s configuration. Thus, you should replace your current .htaccess file with the default one.
In this example, we’ll be using Hostinger’s File Manager:

# 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
Alternatively, you can also run this process by using an FTP client, like FileZilla
If the problem is not solved, try to remember what actions you’ve taken before the error occurred. If it happened after performing a specific update, then restoring a backup might be a reliable option to get your site up and running.
There are plenty of reasons why you can get a broken permalinks issue in WordPress. The bad news is, your website will be inaccessible and will display a “404 Page Not Found” error.
Fortunately, you can effortlessly handle this problem using these three simple methods:
We hope that this step-by-step tutorial will help you fix broken permalinks on your WordPress website. If you have any more questions, let us know in the comments section below.
February 01 2018
Hello, I followed your instructions and I was able to fix the error. Thanks. Your content is also easy to understand, especially for those like me who aren't as tech-savvy. Great Job!
March 28 2019
Thank you!
Gediminas B.
Replied on February 15 2018
Thank you for your kind words, Liz! I am glad to hear that you find out tutorials helpful!