Azure Front Door - Path based routing rule
We see how can we configure the path based routing using azure front door service within 2 different versions on API. These 2 API are hosted in 2 different azure web app. I have created 2 web api and hosted the default weather forecast api with core 3.1 with one more entity called version to identify the api version. Version one api output Version two api output Along with it I have added the version in the route of version 2 api as below [Route("V2/[controller]")] I have furnished the steps below to achieve the simple Path based routing rule Step 1: Create 2 web app versiononeapi, versiontwoapi. Step 2: Create a web api project with core 3.1 Step 3: change the response for the get method in WeatherForecastController as below, make version as V1 and right click on project à publish à Azure à Azure app service windowsà select the subscription, resource group and web app versiononeapi Step 4: change the response for the get method in WeatherForecast...