Thanks for your help Esmi,
I have it fixed and this is what was happening.
I have the blog stored in the directory /blog/ and the site is on the root. I must of rewritten the root/index.php with the original index.php To fix all I had to do was change the root index.php from;
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
To
/** Loads the WordPress Environment and Template */
require('./blog/wp-blog-header.php');
Cheers