Rafa_F
1
Hi All,
I have used dynamic_sitemaps for sitemap.
Command to generate xml file “rake sitemap:generate”
After running this command it is generating this xml files
http://www.example.com/sitemaps/site.xml
My Expectation:
Here i need the protocol as "https" instead of http
https://www.example.com/sitemaps/site.xml
How to override the default protocol in sitemap.
Please give me suggestions
Thanks in advance.
https://www.example.com/sitemaps/site.xml
How to override the default protocol in sitemap.
Please give me suggestions
Thanks in advance.
A quick look at
https://github.com/lassebunk/dynamic_sitemaps/blob/master/lib/dynamic_sitemaps/sitemap.rb
and
https://github.com/lassebunk/dynamic_sitemaps/blob/master/lib/dynamic_sitemaps.rb
seems to indicate that this is supported in the config file
(config/sitemap.rb by default) as:
protocol “https”
It doesn’t get much simpler than that.
(I’ve never used this gem, but if you read a lot of Ruby source, these
things start to become more apparent.)
-Rob