I'm trying to start my web site on iis server and I use php for that.
every thing is fine on server but defaultDocument.
how can I set that on web.config file.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument enabled="true">
<files>
<remove value="default.aspx" />
<remove value="iisstart.htm" />
<remove value="index.html" />
<remove value="index.htm" />
<remove value="Default.asp" />
<remove value="Default.htm" />
<add value="index.php" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
this is the default xml and I try other thing like:
<clear />
or try to remove other pages...
any Idea how can I set this file?