Hi, I have a web site and a blog on the same url (it seemed like a good idea at the time), the url of the web site is mywebsite.info/index.html and the url of the blog is mywebsite.info/index.php The problem is, when someone clicks on the title of the blog to get to the home page of the blog, they are taken to the home page of the web site. Is there anything I can do about this? I guess I have to edit a piece of code in one of the theme's files (it's a Wordpress blog.)
I don't know how to explain this properly, but I'll give it a wack. index.html has a higher cardinality than index.php. When you visit mywebsite.info/ the webserver will serve up index.html instead of index.php because index.html > index.php. In your header change mywebsite.info/ to mywebsite.info/index.php.
Thanks for your help, should have thought of this before I posted but I've just opened general options and changed the blog address url to mysite.info/index.php, and it worked!