From 3ce885fff2d3ff91b7d71cc3dfa7c431caef139c Mon Sep 17 00:00:00 2001 From: hb90dev <63460731+hb90dev@users.noreply.github.com> Date: Mon, 13 Apr 2020 17:57:24 +0400 Subject: [PATCH] fixes sitemap base url issue when using with subfolder (#8247) * fixes sitemap base url issue when using with subfolder * fixes sitemap base url issue when using with subfolder * uses directly relative path * removes prefix variable --- src/sitemap.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sitemap.js b/src/sitemap.js index 880a855aee..42adfb6870 100644 --- a/src/sitemap.js +++ b/src/sitemap.js @@ -41,15 +41,15 @@ sitemap.getPages = async function () { changefreq: 'weekly', priority: 0.6, }, { - url: '/recent', + url: `${nconf.get('relative_path')}/recent`, changefreq: 'daily', priority: 0.4, }, { - url: '/users', + url: `${nconf.get('relative_path')}/users`, changefreq: 'daily', priority: 0.4, }, { - url: '/groups', + url: `${nconf.get('relative_path')}/groups`, changefreq: 'daily', priority: 0.4, }]; @@ -75,7 +75,7 @@ sitemap.getCategories = async function () { categoriesData.forEach(function (category) { if (category) { categoryUrls.push({ - url: '/category/' + category.slug, + url: `${nconf.get('relative_path')}/category/` + category.slug, changefreq: 'weekly', priority: 0.4, }); @@ -112,7 +112,7 @@ sitemap.getTopicPage = async function (page) { topicData.forEach(function (topic) { if (topic) { topicUrls.push({ - url: '/topic/' + topic.slug, + url: `${nconf.get('relative_path')}/topic/` + topic.slug, lastmodISO: utils.toISOString(topic.lastposttime), changefreq: 'daily', priority: 0.6,