Hi all! We made a static website using Jekyll on Azure Static Webapp and faced a dilemma on how to properly set up different types of redirects necessary for SEO and not only.
Some of the main redirects that we need are:
- Support Non-Trailing Slash Urls - redirect the Urls with / at the end to the url without it
- Remove .html - by default the same pages on jekyll are accessible both with .html and without it, I would like to redirect pages with .html to the same url without it
- Implement lower case url rule - so that when typing the url all the upper case letters would convert to the lower case by redirect
- http errors - 404 page - by default Azure's page is shown, I would like to show our own version of it.
First I've tried to create web.config file in the root folder and follow this instruction - https://rimdev.io/jekyll-and-iis-web-configuration-in-windows-azure/ but nothing changed and it seems that this approach is not working.
Then I tried to use the staticwebapp.config.json file. I managed to implement only local redirects, like page 1 to page 2, but not global ones.
Does anybody have any positive experience in this? What is the best approach to take and how ti implement all these redirects? And why web.config is not working (I put it in root folder)? May be there are some settings that need to be turned on in Azure admin to make it work? That would be the easiest way to implement those redirect.
BTW I used this guide to create the website - https://learn.microsoft.com/en-us/azure/static-web-apps/publish-jekyll
Please advise! Thanks!