This post shows you how to create an XML sitemap in your Umbraco website.

I will share the code I have used to create my XML sitemap page http://www.codeshare.co.uk/xmlsitemap
You will need an XML sitemap when you submit your site to search engines.

Just add a template called XMLSitemap

@inherits Umbraco.Web.Mvc.UmbracoTemplatePage

@{
    Layout = null;
    Response.AddHeader("Content-Type", "text/xml");
    IPublishedContent homePage = Model.Content.AncestorOrSelf("home");
    const string DATE_TIME_FORMAT = "yyyy-MM-ddTHH:mm:sszzz";
}

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" 
  xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" 
  xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>@homePage.UrlWithDomain()</loc><priority>1.0</priority><lastmod>@homePage.UpdateDate.ToString(DATE_TIME_FORMAT)</lastmod></url>
@RenderChildPages(homePage.Children, DATE_TIME_FORMAT)
</urlset>
                
@helper RenderChildPages(IEnumerable<IPublishedContent> pages, string dateTimeFormat)
{
    if (pages.Any())
    {
        foreach (IPublishedContent item in pages.Where(x => x.IsVisible()))
        {
            if (!(item.HasValue("excludeFromSitemap") && (bool)item.GetPropertyValue("excludeFromSitemap")))
            {
<url><loc>@item.UrlWithDomain()</loc><lastmod>@item.UpdateDate.ToString(dateTimeFormat)</lastmod></url>
                if (item.Children.Where(x => x.IsVisible()).Any())
                {                        
                    @RenderChildPages(item.Children, dateTimeFormat)
                }
            }
        }
    }
}

Make sure you don't try and add any spaces or tabs to this line beginning with <url> as it will cause an error.

Now you just need to create a document type called XMLSitemap and use the XMLSitemap template.

Make sure your home node allows you to create the XMLSitemap under it.

If you want to do a rewrite rule to map /sitemap.xml to /xmlsitemap you can find out how to do so here

If you would like to know more about Umbraco, why not use your 10 day free trial with pluralsight and go through the umbraco courses.

Paul Seal

Umbraco MVP and .NET Web Developer from Derby (UK) who specialises in building Content Management System (CMS) websites using MVC with Umbraco as a framework. Paul is passionate about web development and programming as a whole. Apart from when he's with his wife and son, if he's not writing code, he's thinking about it or listening to a podcast about it.

Proudly sponsored by

Moriyama

  • Moriyama build, support and deploy Umbraco, Azure and ASP.NET websites and applications.
AppVeyor

  • CI/CD service for Windows, Linux and macOS
  • Build, test, deploy your apps faster, on any platform.
elmah.io

  • elmah.io is the easy error logging and uptime monitoring service for .NET.
  • Take back control of your errors with support for all .NET web and logging frameworks.
uSync Complete

  • uSync.Complete gives you all the uSync packages, allowing you to completely control how your Umbraco settings, content and media is stored, transferred and managed across all your Umbraco Installations.
uSkinned

  • More than a theme for Umbraco CMS, take full control of your content and design with a feature-rich, award-nominated & content editor focused website platform.
UmbHost

  • Affordable, Geo-Redundant, Umbraco hosting which gives back to the community by sponsoring an Umbraco Open Source Developer with each hosting package sold.