Hello folks,
If you are facing issue with Wordpress website that all pages gives 404 error after accessing then it should be an issue of the
Wordpress Permalinks.
You need to add the following code in your .htaccess file.
Quote<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /callowtop/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
That's it and your website pages will load now.
Enjoy !! :) ;) :)