After Database Import 404 Not Found Error – But Can Access Admin
-
I am setting up a Dev environment locally (MAMP/MySql). I also have a Testing environment on my webhost. I exported the database from my Testing WP site and imported it into my Dev WP site. I am able to login to the admin, but the site url cannot be found either from the admin panel or via the address bar. I suspect there is something in the database I need to change, but can’t figure out what.
I have changed the “Home” and “Site” urls in the wp_options table in the database and all of the correct DB_User DB_Password and DB_Name in the wp-config.php file. I can’t figure why I can open the admin but the site url cannot be reached.
`# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /www/bigmesses/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /www/bigmesses/index.php [L]
</IfModule># END WordPress
- The topic ‘After Database Import 404 Not Found Error – But Can Access Admin’ is closed to new replies.