URL Rewrite pravidla: Porovnání verzí
Z ASPone Help Wiki
Řádka 14: | Řádka 14: | ||
</rewrite> | </rewrite> | ||
</system.webServer> | </system.webServer> | ||
+ | |||
+ | <h2>Přesměrování z BEZ WWW na WWW a z HTTP na HTTPS</h2> | ||
+ | <system.webServer> | ||
+ | <rewrite> | ||
+ | <rules> | ||
+ | <rule name="Force WWW and SSL" enabled="true" stopProcessing="true"> | ||
+ | <match url="(.*)" /> | ||
+ | <conditions logicalGrouping="MatchAny"> | ||
+ | <add input="{HTTP_HOST}" pattern="^[^www]" /> | ||
+ | <add input="{HTTPS}" pattern="off" /> | ||
+ | </conditions> | ||
+ | <action type="Redirect" url="https://www.test.cz/{R:1}" appendQueryString="true" redirectType="Permanent" /> | ||
+ | </rule> | ||
+ | </rules> | ||
+ | </rewrite> | ||
+ | </system.webServer> |
Verze z 23. 8. 2022, 08:56
Přesměrování z HTTP na HTTPS
<system.webServer> <rewrite> <rules> <rule name="HTTPS Redirect" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="^OFF$" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" appendQueryString="false" /> </rule> </rules> </rewrite> </system.webServer>
Přesměrování z BEZ WWW na WWW a z HTTP na HTTPS
<system.webServer> <rewrite> <rules>
<rule name="Force WWW and SSL" enabled="true" stopProcessing="true">
<match url="(.*)" /> <conditions logicalGrouping="MatchAny"> <add input="{HTTP_HOST}" pattern="^[^www]" /> <add input="{HTTPS}" pattern="off" /> </conditions> <action type="Redirect" url="https://www.test.cz/{R:1}" appendQueryString="true" redirectType="Permanent" />
</rule>
</rules> </rewrite> </system.webServer>