windows hosting run php

Solutions on MaxInterview for windows hosting run php by the best coders in the world

showing results for - "windows hosting run php"
Nathanael
11 Nov 2020
1//in your Folder web.config add <add value="index.php" />
2<?xml version="1.0" encoding="UTF-8"?>
3<configuration>
4  <system.webServer>
5    <defaultDocument enabled="true">
6      <files>
7        <clear />
8        <add value="index.php" />
9        <add value="index.aspx" />
10        <add value="index.asp" />
11        <add value="index.htm" />
12        <add value="index.html" />
13        <add value="home.aspx" />
14        <add value="home.asp" />
15        <add value="home.htm" />
16        <add value="home.html" />
17        <add value="default.aspx" />
18        <add value="default.asp" />
19        <add value="default.htm" />
20        <add value="default.html" />
21      </files>
22    </defaultDocument>
23  </system.webServer>
24</configuration>
similar questions
queries leading to this page
windows hosting run php