PHP Classes

File: public/web.config

Recommend this page to a friend!
  Classes of Steeven Lim   o2system   public/web.config   Download  
File: public/web.config
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: o2system
Start projects using the with O2System Framework
Author: By
Last change:
Date: 3 years ago
Size: 752 bytes
 

Contents

Class file image Download
<configuration> <system.webServer> <rewrite> <rules> <clear /> <rule name="REQUEST_URI" stopProcessing="true"> <match url="^" ignoreCase="false" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration>