[WordPress Tips] Instructions on how to fix 404 errors when posting new articles on WordPress – Did you know that 404 errors affect your seo? If your website has a lot of these errors, you should fix it immediately to ensure our website is indexed by google in the best way? A 404 error you often see is when you finish writing an article and then you click to view the article, your website will show a message “not found the website you requested 404 error while the article is available” .
In the previous article about WordPress tricks, I showed you the most effective way to prevent copying of articles in wordpress so that you can easily protect your articles from being copied in WordPress. Continue in this article. I will guide you how to fix 404 error when posting new posts in WordPress simply.
How to fix 404 error when posting a new post in WordPress
In this case, don’t be too worried to delete your post? Actually your article is still archived just because the .htacess file is not suitable somewhere? And now go to wp-admin and set up your permalinks .
You log into the admin section (Admin) then go to Settings > Permalinks then choose the appropriate link structure. You try to choose default (Default) and then save (or you can choose Custom Structure as shown below) .

Then you choose Save Changes .
Note: If it still does not work, the .htacess file may not allow you to save the settings so you need to set the write permission for the .htacess file by opening the .htacess file then set the permission to 777 for the file is okay. Then you repeat the above steps and save. After that, you change the permissions for the .htacess file back to the original.
Or you can edit the .htacess file with the following code
# 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
That’s it, if the above error still doesn’t fix it, you can try contacting your hosting provider or you can download the latest version of WordPress and see if that’s the way to fix the 404 error when posting a new post on WordPress. ?
Finally, if you find the article useful, please subscribe to my blog regularly to update the latest articles via Email – Thank you!

