views:

15

answers:

1

hi,

i am using MvcSitemapProvider and is working fine, but its returning all results in Https instead of Http.

i am unable to find a way to return the results in http (sitemap for search engine)

<mvcSiteMapNode title="Details" controller="Home" action="News" dynamicNodeProvider="DynamicPostDetailsProvider, MyNamespace" updatePriority="Normal" />

returns like

<url>
    <loc>https://localhost:1118/Home&lt;/loc&gt;
    <changefreq>always</changefreq>
    <priority>0.75</priority>
   </url>
+2  A: 

I think this workitem is of interest to you. This bug was fixed after the 2.0.0 release was published, so you may need to check out latest source and build it yourself.

Anton Gogolev