- 🇩🇪Germany jan kellermann
jan kellermann → made their first commit to this issue’s fork.
Having a Drupal multisite + multilingual setup where a site is determined by the URL path, e.g:
- mysite.com/madrid/en-us
- mysite.com/boston/fr-us
where the language part is added by inbound/outbound processing
My sitemaps are generated by
Simple XML sitemap →
and available at:
- mysite.com/madrid/sitemap.xml
- mysite.com/boston/sitemap.xml
note that language part is missing as Sitemap module is using $GLOBALS['base_url']
to construct the URL unless a custom base_url
is specified in Sitemap config.
The "sitemap" warmer plugin is passing the sitemap URL through Url class which will add the language prefix "/en-us" which means that the sitemap isn't available there as well.
Add an option which will construct the URL literally, without using "Url" processing.
Needs review
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
jan kellermann → made their first commit to this issue’s fork.