we have a legacy ASP.NET website that depends on the module ISAPI_Rewrite3 for URL rewriting. It uses a .htaccess file.
this was a necessity for URL rewriting before IIS7 which now features a built in URL Rewirite engine.
we want to migrate it to Azure PaaS App Services but can App Services cater for 3rd party modules such as this?
any help is most appriciated
JGilmartin
With Azure App Services, you can't install 3rd party IIS modules if they are not listed on extensions list at
https://<yourappname>.scm.azurewebsites.net/SiteExtensions/#gallery.In this case, you'll need to translate
.htaccesscontent to IISweb.configbefore you migrate. About how to do this, please refer to this doc.