wp-admin 503 error

Are you able to run a copy of the site locally? If so, then it is likely not the codebase. If it doesn’t work, at least you know it is something in the site codebase and not likely an actual server related issue. Was the hosting company able to look at logs. This being a … Read more

Getting Internal server in sub folder pages

you need to create .htaccess file. Create .htaccess file and paste below code in it # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPress