-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
29 lines (28 loc) · 902 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<!--start-php-->
<handlers>
<remove name="php_5.2" />
<remove name="php_5.3" />
<remove name="php_5.4" />
<remove name="php_5.5" />
<remove name="php_5.6" />
<remove name="php_7.0" />
<remove name="php_7.1" />
<add name="php_5.4" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="D:\BtSoft\WebSoft\php\5.4\php-cgi.exe" resourceType="Unspecified" requireAccess="Script" />
<remove name="PageHandlerFactory-ISAPI-2.0-64" />
<remove name="PageHandlerFactory-ISAPI-2.0" />
<remove name="SimpleHandlerFactory-ISAPI-2.0-64" />
<remove name="SimpleHandlerFactory-ISAPI-2.0" />
<remove name="ASPClassic" />
</handlers>
<!--end-php-->
<!--start-rewrite-->
<rewrite>
<rules>
</rules>
</rewrite>
<!--end-rewrite-->
</system.webServer>
</configuration>