When the Permalink stucture is set to default I am able to click on the title and go to a page with that post..
If Permalinks is set to anything other than default,
e.g.
/%postname%/
the home page is redisplayed when the title link is clicked
the .htaccess file appears to be correct...
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
any idea why my custom Permalink not working?