16 lines
647 B
XML
16 lines
647 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
<system.webServer>
|
|
<handlers>
|
|
<remove name="PHP FastCgiModule" />
|
|
<add name="PHP FastCgiModule" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\PHP\php-cgi.exe" resourceType="File" />
|
|
<add name="FastCGI PHP" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\PHP\php-cgi.exe" resourceType="File" />
|
|
</handlers>
|
|
<defaultDocument>
|
|
<files>
|
|
<add value="index.php" />
|
|
</files>
|
|
</defaultDocument>
|
|
</system.webServer>
|
|
</configuration>
|