URL Rewrite pravidla

Z ASPone Help Wiki
Přejít na: navigace, hledání

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í domény bez www na HTTPS://WWW.

<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.vasedomena.cz/{R:1}" appendQueryString="true" redirectType="Permanent" />
     </rule>
   </rules>
 </rewrite>
</system.webServer>
Osobní nástroje
Jmenné prostory

Varianty
Akce
Navigace
Znalostní báze
Domény
ASPone.cz
Nástroje