I have uploaded WordPress to a server and set up a staging subdomain (staging.website
). I can log in and access the WordPress admin with no problems (e.g. staging.website.com/wp-admin/
) and I can create and navigate to pages with no problem (e.g. staging.website.com/sample-page/
)
However, if I try and access the root page:
I get redirected to website.com/php
- 404 not found
.
Does anyone have any ideas?
Thanks Jon.
You have probably installed wordpress before assigning it to your sub domain. Check Settings > General and change URL to match your sub domain
Also if you relocated your files after instalation you may have problems with path to your WP. You can try these steps:
1. Edit the wp-config.php file.
2. After the "define" statements (just before the comment line that says "That's all, stop editing!"), insert a new line, and type: define('RELOCATE',true);
3. Save your wp-config.php file.
4. Open a web browser and manually point it to wp-login.php on the new server. For example, if your new site is at http://www.yourdomainname.com, then type http://www.yourdomainname.com/wp-login.php into your browser's address bar.
5. Login as per normal.
6. Look in your web browser's address bar to verify that you have, indeed, logged in to the correct server. If this is the case, then in the Admin back-end, navigate to Settings > General and verify that both the address settings are correct. Remember to Save Changes.
7. Once this has been fixed, edit wp-config.php and either completely remove the line that you added (delete the whole line), comment it out (with //) or change the true value to false if you think it's likely you will be relocating again.
Note: When the RELOCATE flag is set to true, the Site URL will be automatically updated to whatever path you are using to access the login screen. This will get the admin section up and running on the new URL, but it will not correct any other part of the setup. Those you will still need to alter manually.