PHP Classes

File: web.config

Recommend this page to a friend!
  Classes of Mark Richards   CliqonV4   web.config   Download  
File: web.config
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CliqonV4
Framework with modules to build Web applications
Author: By
Last change: Release 4.0.2

Production Release including changes to Install
Merge branch 'master' of https://github.com/webcliq/CliqonV4
Date: 6 years ago
Size: 1,709 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1"> <match url="^(.*)\.htm$" /> <action type="Rewrite" url="{R:1}.php" /> </rule> <rule name="Imported Rule 2" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> <add input="{R:1}" pattern="^(index\.php)" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="/index.php/{R:1}" /> </rule> </rules> <outboundRules> <rule name="Add Strict-Transport-Security when HTTPS" enabled="true"> <match serverVariable="RESPONSE_Strict_Transport_Security" pattern=".*" /> <conditions> <add input="{HTTPS}" pattern="on" ignoreCase="true" /> </conditions> <action type="Rewrite" value="max-age=31536000" /> </rule> </outboundRules> </rewrite> <security> <requestFiltering> <requestLimits maxAllowedContentLength="300000000" maxQueryString="4096" /> </requestFiltering> </security> <caching enabled="false" enableKernelCache="false" /> </system.webServer> <system.web> <customErrors mode="Off"/> </system.web> </configuration>