Init du projet
This commit is contained in:
26
public/web.config
Normal file
26
public/web.config
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<system.webServer>
|
||||
<rewrite>
|
||||
<rules>
|
||||
<rule name="File or directory rule" stopProcessing="true">
|
||||
<match url="^.*$" />
|
||||
<conditions logicalGrouping="MatchAny">
|
||||
<add input="{REQUEST_FILENAME}"
|
||||
matchType="IsFile" pattern=""
|
||||
ignoreCase="false" />
|
||||
<add input="{REQUEST_FILENAME}"
|
||||
matchType="IsDirectory"
|
||||
pattern=""
|
||||
ignoreCase="false" />
|
||||
</conditions>
|
||||
<action type="None" />
|
||||
</rule>
|
||||
<rule name="Rewrite rule" stopProcessing="true">
|
||||
<match url="^.*$" />
|
||||
<action type="Rewrite" url="index.php" />
|
||||
</rule>
|
||||
</rules>
|
||||
</rewrite>
|
||||
</system.webServer>
|
||||
</configuration>
|
Reference in New Issue
Block a user