Do not allow subordinate virtual directories to inherit this level of Web.config configuration in IIS

Source: Internet
Author: User

Do not allow subordinate virtual directories to inherit this level of Web.config configuration in IIS

Recently encountered a problem: the default Web site under the establishment of virtual sites, the virtual station reported Web.config configuration error. The check discovery is the default Web site configuration, not the virtual station. There are no related references under the virtual station, so the error is correct.

Workaround:

The web.config for configuring the default Web site is not down inheritance.

Put everything except Configsecton.

<location path= "." Inheritinchildapplications= "false" >

</location>

Inside go like:

<?xml version= "1.0" encoding= "UTF-8"?>

<configuration xmlns= "http://schemas.microsoft.com/.NetConfiguration/v2.0" >

<configSections>

...

</configSections>

<location path= "." Inheritinchildapplications= "false" >


Put your configuration the code here ...


</location>

</configuration>

have tried, feasible

Original address: http://hi.baidu.com/uyaly/item/6cfc9a42f48f5ef0dd0f6c2e

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.