I would migrate from Azure Web App Linux (PHP application , apache server ) to Azure Windows App Service (IIS) and i 'am confused about handling authorization header in IIS
In .htaccess , i simply putting these lignes , and the Application work fine.
# Handle Authorization Header
# RewriteCond %{HTTP:Authorization} .
# RewriteRule .* - [E=Authorization:%{HTTP:Authorization}]
I try to import these rules in hosted IIS server, but it's look IIS unable to convert them.
So can someone can help me?
Regards.