DirEasy automatically generates the sitemap for the website using Next.js's built-in Generating multiple sitemaps functionality (sitemap.ts). The generation process scans different directories in the project and creates sitemap entries for various types of content:
Each collection created by admin is added to the sitemap
The sitemap is automatically regenerated during each build, ensuring it stays up to date with your content.
Google Search Console cannot exceed 5000 items in each sitemap.xml file. If your Directory website's projects submissions do not exceed 5000, then the url of your sitemap.xml generated will be: https://your-domain.com/sitemap/0.xml and https://your-domain.com/sitemap/1.xml
Page Collection 、Content Collection and Collections are listed in the 0.xml file.
Projects are listed in the 1.xml file. 2.xml for the next 5000 items and so on.
If you want add links list for exchange backlinks, we had a special page https://yourdomain.com/friends for this. You can find the configuration for the page in the lib/config/seo.ts:
lib/config/seo.ts
friendsConfig: { title: "Discover | Weekly selection of innovative products", description: "Discover the best innovative products and tools of the week, voted by the community to help you improve your productivity and quality of life.", items: [ { title: "Bento - Explore the most creative Bentos", url: "https://bento.me/allentown", nofollow: true, }, { title: "Linktree - One link to share everything you create", url: "https://linktr.ee/allentown521", nofollow: true, }, { title: "Evernote - Remember everything and tackle any project with your notes, tasks, and schedule all in one place", url: "https://share.evernote.com/note/cf938b8b-a2db-4c43-6e37-ba750fa05905", nofollow: true, }, { title: "Cal - Calendar and scheduling app", url: "https://cal.com/@allentown521", nofollow: true, }, { title: "Creem - financial OS for Global Teams", url: "https://www.creem.io/bip/saashunt", nofollow: true, }, { title: "Substack - Discover and follow the best newsletters", url: "https://substack.com/@allentown521", nofollow: true, }, ], },
We have added this page to the sitemap by default
You should always control the number of links to the page, usually no more than 10, otherwise Google might consider it a link farm