Posts

Showing posts from September, 2019

Path of applicationhost.config

%WINDIR%\system32\inetsrv\config <rule name="Force non-WWW" enabled="true" stopProcessing="true"> <match url="(.*)" /> <conditions logicalGrouping="MatchAny"> <add input="{HTTP_HOST}" pattern="^(www\.)(.*)$" /> </conditions> <action type="Redirect" url="https://{C:2}/{R:1}" appendQueryString="true" /> </rule> <rule name="Force HTTPS" enabled="true" stopProcessing="true"> <match url="(.*)" /> <conditions logicalGrouping="MatchAny"> <add input="{HTTPS}" pattern="off" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" /> </rule> <rule name="Force SSL" stopProcessing="true"> <match url="(.*)" /> <conditi...