Hey guys,
Hope you're all cool. I'm also hopeful someone can shed some light on this. I'm sure it can easily be solved.
Just finished a WP site - I was working on it locally at:
http://localhost/wordpress/files
AKA htdocs/wordpress/[files]
I've just transferred all the [files] to my root web space, made a few changes in the wp-config.php file to tell it where the DB is, updated a few URLs in the control panel's settings, and set up the DB (which is all fine - it's seeing the content).
However, I get a really weird problem. The homepage is fine, I can also click through to the posts and get search results, but none of the pages work?
See for yourselves:
http://localhost/wordpress/ - local
http://www.test.ldexterldesign.co.uk/ - live
My first thought was that this could be a .htaccess issue (seen as I've essentially gone from a folder install to a root install), but surely none of the pages, including the homepage, posts, and search would load if this was the case?
Here's my htaccess file as I see it:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
# END WordPress
Can't say I'm an expert here :Z
Any thoughts guys?
Thanks,
L