We talking about Cloud
Web Hosting & Cloud Services
Celebrate the power and freedom of Open Source
with Open Source Cloud Servers starting at only £10/mo £5/mo.
Web Hosting & Cloud Services
Celebrate the power and freedom of Open Source
with Open Source Cloud Servers starting at only £10/mo £5/mo.
When working with WordPress, 404 Page Not Found errors often occur when a new theme has been activated or when the rewrite rules in the .htaccess file have been altered.
When you encounter a 404 Page Not Found error in WordPress, you have two options for correcting it.
This will reset the permalinks and fix the issue in many cases. If this doesn’t work, you may need to edit your .htaccess file directly.
Follow the instructions in this article on How to Edit Your .htaccess file.
Add the following snippet of code to the top of 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