|
In the file "SitemapHandler.cs" you will find this line
string siteUrl = Request.Url.Scheme + "://" + Request.Url.Host;
the scheme set above you will not need to worry about but the host is what you will probably need to change! I am not sure what too in the case but for this site in the mean time you can hard code as shown below. If you are .NET development savvy
then you could remotely debug directly from the site and set a break point in the above shown code and see if you can find where your domain is hiding :-)
Give this a try and see what your results are like.
string siteUrl = Request.Url.Scheme + "://" + "coastalscience.noaa.gov";
|