Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
Hi all,
currently we are set up with a custom sitemap generator that builds the xml files manually and stores it as an asset within the dam. XML files are coming out great except for one issue - we're seeing the relative urls rather than the absolute that are generated on demand through a servlet.
For the custom sitemap generator, we needed a scheduled osgi service so we transitioned to that. But applying the same logic, we're seeing relative urls being returned.
code example:
//Create sitemap entry for each content path that is not marked hidden by authors
for (Hit hit : result.getHits()) {
String path = hit.getPath();
Resource resource = resourceResolver.getResource(path);
Page page = null;
if (resource != null) {
page = resource.adaptTo(Page.class);
}
RobotsPageModel robotsPage = null;
if (page != null && page.getContentResource() != null) {
robotsPage = page.getContentResource().adaptTo(RobotsPageModel.class);
}
if (robotsPage != null &&
!robotsPage.isNoIndex() &&
!robotsPage.isHideNav()) {
String url = pageTreeSitemapGenerator.getCanonicalUrl(page).replaceFirst("^/[^/]+/[^/]+", "").replace(".html", "");
StringBuilder entry = urlEntries.getOrDefault(url, new StringBuilder());
entry.append(URL_TAG + "\n");
entry.append(LOC_TAG).append(url).append(LOC_CLOSING_TAG + "\n");
addLastMod(entry, page);
addAlternates(entry, page, pageTreeSitemapGenerator);
addContentType(entry, page);
entry.append(URL_CLOSING_TAG + "\n");
urlEntries.put(url, entry);
}
}
for (StringBuilder entry : urlEntries.values()) {
writer.append(entry.toString());
}
we did notice that when logging, we saw the urls within the author instance showing as relative compared to the published logs as absolute.
Solucionado! Ir para a Solução.
Visualizações
respostas
Total de curtidas
You can try using an externalizer to form an absolute URL. Please refer the following URL - https://medium.com/@toimrank/aem-sitemap-externalize-and-extension-less-url-be916490d2c6
You can try using an externalizer to form an absolute URL. Please refer the following URL - https://medium.com/@toimrank/aem-sitemap-externalize-and-extension-less-url-be916490d2c6
Did you check this - https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/sitemap-in-aem-6-5-13-not-... ? you may need to use resource resolver & Externalizer.
Visualizações
respostas
Total de curtidas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas