I'm actually just trying to mirror a GoDaddy site on a subdirectory of my personal 1&1 hosting.
I just strait up copy-pasted the file structure, and copied the Database, using a search replace tool to replace the base url with my new one. I then editted the wp-config with the new DB stuff.
When I navigate to http://oneandone.com/wp for some reason its redirecting me to a GoDaddy 404 page.
If I go to http://oneandone.com/wp/readme.html it displays the appropriate file correctly.
In the options table in the db, I've verified that the siteurl is correct.
.htaccess
# 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
Anyone have any insight?
Update
It may be of interest, that the problem persists even when wp-config has bad info for the database. I think this indicates that wp-config isn't even loading. The index.php file looks normal, as well as the .htaccess, so I'm totally at a loss here.
Update 2
http://oneandone.com/wp/index.php brings me to the expected Database Error page. Where http://oneandone.com/wp/ gets the godaddy 404 page.
FINAL UPDATE: PROBLEM RESOLVED
