10
Dec
Problem no 1:I needed to add a button so when you get to my other pages on this site the link back to the blog was obvious.
OK so I looked at Support and found a wordpress forum topic http://wordpress.org/support/topic/58817 seemed ok if a little complicated
Then I looked under the hood (as they say).
A .htaccess file lurks
Simple solution/hack add a redirect in a search engine friendly manner of course.
# BEGIN WordPress
Redirect /blog/ http://www.porkandpaws.com
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
0
