Mobile app version of vmapp.org
Login or Join
Kimberly868

: Local install of wp site brought down from host - home page is ok but other pages redirect to wamp config page local install of wp site brought down from host - home page is ok but other

@Kimberly868

Posted in: #Htaccess #Wamp #Wordpress

local install of wp site brought down from host - home page is ok but other pages redirect to wamp config page.

I got all local files from host to www dir under local wamp. I got database from host and loaded to new local db and used this tool to adjust
site_on_web.com to "localhost/site_on_local"

now the home page works great and can login to admin page but when click on reservations page and others of site then site just goes to the wamp server config page even though the url shows correctly as localhost/site_on_local/reservations

my htaccess file is this

# 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


and rewrite-module is checked in the php-apache-apache modules setting. now when I uncheck the rewrite-module is checked in the php-apache-apache modules setting or I clear out the whole htaccess file then the pages just goto

Not Found
The requested URL /ritas041214/about-ritas/ was not found on this server.


Please help as I am unsure now about my process to move local site up and down and be able to make it work and without this I am lost...

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Kimberly868

2 Comments

Sorted by latest first Latest Oldest Best

 

@Lengel546

Can you still access /wp-admin ? I fixed mine when it was doing this after migration by going to /wp-admin -> Permalinks -> set to the default (simple) page_id and then back to my date structure. This recreated the mod rewrite rules and it was OK after that.

10% popularity Vote Up Vote Down


 

@Hamaas447

Check wp-config.php to make certain it has all the right configuration settings in place, as well as any other information it may need, such as DB name, access and the like.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme