Blame view
web.config
691 Bytes
60c6f0893 init |
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> <files> <add value="index.php" /> </files> </defaultDocument> <directoryBrowse enabled="false" /> <httpErrors> <remove statusCode="404" subStatusCode="-1" /> <error statusCode="404" path="/404.php" responseMode="ExecuteURL" /> </httpErrors> <handlers> <add name="php" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\php\php-cgi.exe" resourceType="Unspecified" /> </handlers> --> </system.webServer> </configuration> |