I use single installation of Composite C1 for several websites using URL Configuration.
Sitemap.ashx includes in SEO sitemap all URLs from differents web site. Moreover the URL from other website are incorrect:
http://first.com/http://second.com/home
Comments: ** Comment from web user: wysocki **
Sitemap.ashx includes in SEO sitemap all URLs from differents web site. Moreover the URL from other website are incorrect:
http://first.com/http://second.com/home
Comments: ** Comment from web user: wysocki **
Appending /sitemap.xml to the website URL as suggested above should be working in v. 4.0, too.
If not, make sure your web.config has these settings:
```
<configuration>
...
<system.web>
...
<httpHandlers>
...
<add verb="GET" path="sitemap.xml" type="Composite.AspNet.SiteMapHandler, Composite" />
</httpHandlers>
</system.web>
</configuration>
```
and
```
<configuration>
...
<system.webServer>
<handlers>
...
<add name="SiteMap" verb="GET" path="sitemap.xml" type="Composite.AspNet.SiteMapHandler, Composite" />
</handlers>
</system.webServer>
</configuration>
```