PHP Classes

File: public/web.config

Recommend this page to a friend!
  Classes of Paulo Henrique   Laravel Docker Starter   public/web.config   Download  
File: public/web.config
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Docker Starter
Start a Laravel project using a Docker container
Author: By
Last change:
Date: 3 years ago
Size: 914 bytes
 

Contents

Class file image Download
<configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1" stopProcessing="true"> <match url="^(.*)/$" ignoreCase="false" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> </conditions> <action type="Redirect" redirectType="Permanent" url="/{R:1}" /> </rule> <rule name="Imported Rule 2" stopProcessing="true"> <match url="^" ignoreCase="false" /> <conditions> <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>