A summary of how IIS configures the ASP. NET virtual directory in Win7!
First, right click on the "website", click "Add Virtual Directory" or "virtual application", the author suggested that it is best to set up a virtual application, because it is similar to a website, do not consider the path problem.
Second, directly enter the appropriate content selection path is OK, if you want to specify "application pool", you need to establish a new "application pool", configuration and the site is similar.
Third, after running, if the following error occurred: HTTP error 500.19
is generally a Web. config configuration problem, very simple, find the following content
<system.webServer>
<defaultDocument>
<files>
<clear/>
<add value= "log.aspx"/>
<add value= "index.php"/>
</files>
</defaultDocument>
</system.webServer>
The key to see <clear/>, if not this add on the line!