diff options
| author | horus_arch | 2018-02-07 18:07:53 +0100 |
|---|---|---|
| committer | horus_arch | 2018-02-07 18:07:53 +0100 |
| commit | 92eb8143762e116e8959f6270271fd5540ca50ac (patch) | |
| tree | a9fdc5009b9816fb448431b24bac38f7a215d40d /site/public/web.config | |
| parent | 71950479fbd6088f249e5fda3b180f294d1d745d (diff) | |
| download | alkobote-92eb8143762e116e8959f6270271fd5540ca50ac.tar.gz | |
Adds basic site in laravel.
Diffstat (limited to 'site/public/web.config')
| -rw-r--r-- | site/public/web.config | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/site/public/web.config b/site/public/web.config new file mode 100644 index 0000000..624c176 --- /dev/null +++ b/site/public/web.config @@ -0,0 +1,23 @@ +<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> |
