In fact, in many pages Scott hard-coded Urls. For example, in RecentPost.ascx(some controls and pages also), you can find a method like this:
protected string GetFullUrl(string x, string app)
{
if(appPath == null)
{
appPath = Request.ApplicationPath;
if(!appPath.ToLower().EndsWith("/"))
{
appPath += "/";
}
}
if(host == null)
{
host = Request.Url.Host.ToLower().Replace("www",string.Empty);
}
return string.Format(fullUrl,host,appPath,app);
}
So you will never get urls with "www" in some pages. :)
To solve this issue, remove "Replace..." after ToLower() method.