ugrás a tartalomhoz

Archívum - Dec 21, 2015

web.config

9072ricsi · 2015. Dec. 21. (H), 01.44
Sziasztok!

Az FTP szerveremről töröltem egy-két dolgot, mikor egy web.config fájlon megakadt a szemem. A fő mappába van amúgy. Megnézem és úgy hirtelen mint ha elvesztettem volna az eddig tanultakat, hiába olvasom, nem tudok rájönni mi ez:
  1. <?xml version="1.0"?>  
  2. <configuration>  
  3.     <system.webServer>  
  4.         <rewrite>  
  5.             <rules>  
  6.                 <rule name="Rule1" stopProcessing="true">  
  7.                     <match url="^((?:gallery|img|css|js).*)$" />  
  8.                     <conditions>  
  9.                         <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />  
  10.                         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />  
  11.                     </conditions>  
  12.                     <action type="Rewrite" url="sitepro/{R:1}" />  
  13.                 </rule>  
  14.                 <rule name="Rule2" stopProcessing="true">  
  15.                     <match url="(.*)" />  
  16.                     <conditions>  
  17.                         <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />  
  18.                         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />  
  19.                     </conditions>  
  20.                     <action type="Rewrite" url="sitepro/?route={R:1}" />  
  21.                 </rule>  
  22.     </rules>  
  23.         </rewrite>  
  24.     </system.webServer>  
  25. </configuration>   
Mit is tartalmazz ez a kód? Nem tudok rájönni, ilyet sose láttam, és hogy mikor került rá, azt pláne nem.

Válaszotokat előre is köszönöm!