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
This commit is contained in:
hb90dev
2020-04-13 17:57:24 +04:00
committed by GitHub
parent d77036dbd1
commit 3ce885fff2

View File

@@ -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,