Hi, our blog is at http://www.instantimprints.com/blog. If I create a page and view the link, it's the wrong page. It appears to be showing our very first article (which is maybe it's way of saying it can't find the right page). So far I have tried:
1. Making sure mod_rewrite works (it does)
2. Resetting permalinks to default and back. Right now it's set to Day and name.
3. Checking permissions on .htaccess which appear ok. WP can write/change the file.
Any idea or tips would be appreciated!
Here's a page that should go to a subscribe form:
http://www.instantimprints.com/blog/subscribe-to-our-blog/
.htaccess looks like this (with Day and name mode on):
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
Thx, Jim