Skip to main content
I'm the admin for our SFDC communities and would like to get an overview of each community site (page names and their hierarchical relation to each other). This functionality is typically accomplished with a site map.   I haven't found one in SFDC.  Perhaps someone knows of something on appexchange or other related tips?
2 réponses
  1. 4 août 2018, 13:53
    Hi James,

     

     

     

    I'll try to help out here but I am assuming some things in my comments below.

     

    Your community also has a SITE associated to it. In your community go to Administration > Pages > Click on Go to force.com. The site may or may not have a Robots.txt file. I assume it doesn't. You can create one by creating a simple Visualforce page (see mine below)

     

    Note: you may need to create another community (yes, sounds crazy) which is a root community. A root community is a community that does not have a path.

     

    Root community sample: hhttp://honeywellaidc.force.com

     

    Non-root communinty sample: http://honeywellaidc.force.com/supportppr

     

    The Robots.txt file (the VF page) should be on your non-root community.

     

    <apex:page contentType="text/plain">

     

    User-agent: * # applies to all robots

     

    Allow: /supportppr/s/ # allow all

     

    Allow: /s/ # allow all

     

    Disallow: */secur/forgotpassword.jsp?*

     

    Sitemap: http://honeywellaidc.force.com/supportppr/s/sitemap.xml

     

    Sitemap: https://support.honeywellaidc.com/s/sitemap.xml

     

    </apex:page>

     

    Please let me know if this doesnot work. I don't mind doing some troubleshooting and brainstorming with you.

     

    Kind regards,

     

    Julian
0/9000