IIS7 Default Document not working
- by TooFat
I have a website running on IIS 7 that has the default document on the Web Site Level set to only index.php.
If I right click on the Web Site in IIS Manager and select Explore I see that the index.php file is there.
If I just browse to the web site like http://my.site.com I get the default IIS 7 logo with "Welcome" in a bunch of diff languages.
If I go to http://my.site.com/index.php it brings up the site just fine.
I have stopped and started the Web Site and ran iisreset but still no luck.
The Default Document Section of Web.config looks like this
<defaultDocument>
<files>
<clear />
<add value="index.php" />
</files>
</defaultDocument>
What am I missing?