-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.config
More file actions
20 lines (20 loc) · 732 Bytes
/
web.config
File metadata and controls
20 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument enabled="true">
<files>
<remove value="index.php" />
<remove value="index.html" />
<remove value="index.htm" />
<remove value="Default.asp" />
<remove value="Default.htm" />
<remove value="iisstart.htm" />
<add value="index.html" />
</files>
</defaultDocument>
<httpRedirect>
<add wildcard="C:\inetpub\wwwroot\MFOV.php" destination="localhost/MFOV.php" />
</httpRedirect>
<directoryBrowse enabled="false" />
</system.webServer>
</configuration>