-
Notifications
You must be signed in to change notification settings - Fork 155
Closed
Labels
Description
Describe the bug
when using simpleSitemapAndIndex I noticed in the sitemap-index.xml the paths to the sub index paths don't cotain the subfolder (destinationDir) in the path.
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://example.net/sitemap-0.xml</loc>
</sitemap>
</sitemapindex>
Expected behavior
The location should contain the destination directory.
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://example.net/sitemap/sitemap-0.xml</loc>
</sitemap>
</sitemapindex>
Context:
- version: 6.3.0
Reactions are currently unavailable