b13 / t3ext-seo_basics

TYPO3 Extension: SEO Basics
7 stars 27 forks source link

Http instead of Https in sitemap.xml #79

Open Max-LAB opened 5 years ago

Max-LAB commented 5 years ago

On my https site I have an issue that shows http url's instead of https inside sitemap.xml. Is there any other way to change this beside tweeking SitemapController?

Changing this line solved the problem

if (!empty($baseURL) && strpos($baseURL, '://') === false) { $baseURL = 'http://' . $baseURL; }