views:

85

answers:

0

Hi,

I'd like to set a list of default documents for the VS 2008 webdev server.

eg, If I have a folder called "test" with a file "index.htm" in that folder, when I browse to: "http://localhost:1234/test/", I get a 404, instead of index.htm being loaded.

I have seen you can configure these documents for IIS 7 within web.config :

<system.webServer>
  <defaultDocument>
    <files>
      <clear />
      <add value="index.htm" />
      <add value="index.html" />
    </files>
  </defaultDocument>

However, the webdev server doesnt pick these up.

Any ideas?