使用web.config启用ASP.NET重写URL

时间:2013-01-24 11:15:28

标签: asp.net iis web web-config plesk

我是ASP.NET的新手,事实上我对它几乎一无所知,但不要绝望,我寻找教程...我的一位同事想要在我们的网络服务器上运行ASP.NET应用程序。我们的Web服务器运行的是Windows 2008 R2,包括Plesk 11和IIS 7.5。

到目前为止,我在尝试启用ASP.NET时遇到了各种各样的问题,但经过大量的调整后,我设法让应用程序正常工作(在某种程度上)。

但是,为了使应用程序正常工作,我必须从web.config文件中删除以下行:

<configSections>
    <sectionGroup name="system.webServer">
        <sectionGroup name="rewrite">
            <section name="rewriteMaps" overrideModeDefault="Allow" />
            <section name="rules" overrideModeDefault="Allow" />
        </sectionGroup>
    </sectionGroup>
</configSections>

这是因为我收到了错误:

  

分析程序错误消息:部分或组名称'system.webServer'是   已定义。对此的更新可能仅在配置中发生   定义它的级别。

我的文件夹结构如下:

website/
    TestApplication/
        web.config
    index.php
    web.config

我为“TestApplication”文件夹创建了一个应用程序(不是我真的知道这意味着什么),但这没有任何区别。

我的印象是,如果您创建了一个应用程序,目录中的web.config继承任何父配置!这不是似乎就是这种情况,因为我仍然收到错误。

我的问题是,我对上述情况有什么意义?如何阻止应用程序继承父目录配置,或者修复当前web.config文件以使用ASP.NET

有一点需要注意,我在IIS管理器和Plesk中都进行了更改,因为我无法在Plesk控制面板中找到特定内容,例如:为网站中的目录创建应用程序。我不认为这是问题的原因,但值得一提。

更新

这是我的完整web.config文件(删除了我的一条规则,因为它们对文件没有影响):

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

<configSections>
    <sectionGroup name="system.webServer">
        <sectionGroup name="rewrite">
            <section name="rewriteMaps" overrideModeDefault="Allow" />
            <section name="rules" overrideModeDefault="Allow" />
        </sectionGroup>
    </sectionGroup>
</configSections>

    <system.webServer>
        <httpErrors errorMode="Detailed" />
        <asp scriptErrorSentToBrowser="true"/>
        <rewrite>
            <rules>
                <clear />
                <rule name="Browser Error Rewrite" stopProcessing="true">
                    <match url="^errors/browser$" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
                    <action type="Rewrite" url="_errors/browser.php?error=browser" />
                </rule>
            </rules>
        </rewrite>
        <defaultDocument>
            <files>
                <clear />
                <add value="index.php" />
            </files>
        </defaultDocument>
        <httpErrors>
            <clear />
            <error statusCode="400" prefixLanguageFilePath="" path="/_errors/error.php?id=400" responseMode="ExecuteURL" />
            <error statusCode="502" prefixLanguageFilePath="" path="/_errors/error.php?id=502" responseMode="ExecuteURL" />
            <error statusCode="407" prefixLanguageFilePath="" path="/_errors/error.php?id=407" responseMode="ExecuteURL" />
            <error statusCode="414" prefixLanguageFilePath="" path="/_errors/error.php?id=414" responseMode="ExecuteURL" />
            <error statusCode="415" prefixLanguageFilePath="" path="/_errors/error.php?id=415" responseMode="ExecuteURL" />
            <error statusCode="501" prefixLanguageFilePath="" path="/_errors/error.php?id=501" responseMode="ExecuteURL" />
            <error statusCode="500" prefixLanguageFilePath="" path="/_errors/error.php?id=500" responseMode="ExecuteURL" />
            <error statusCode="401" prefixLanguageFilePath="" path="/_errors/error.php?id=401" responseMode="ExecuteURL" />
            <error statusCode="403" prefixLanguageFilePath="" path="/_errors/error.php?id=403" responseMode="ExecuteURL" />
            <error statusCode="404" prefixLanguageFilePath="" path="/_errors/error.php?id=404" responseMode="ExecuteURL" />
            <error statusCode="405" prefixLanguageFilePath="" path="/_errors/error.php?id=405" responseMode="ExecuteURL" />
            <error statusCode="412" prefixLanguageFilePath="" path="/_errors/error.php?id=412" responseMode="ExecuteURL" />
            <error statusCode="406" prefixLanguageFilePath="" path="/_errors/error.php?id=406" responseMode="ExecuteURL" />
        </httpErrors>
        <handlers>
            <clear />
            <add name="PageHandlerFactory-Integrated" path="*.aspx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.PageHandlerFactory" preCondition="integratedMode" />
            <add name="php-5.3.10" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="C:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP53\php-cgi.exe" resourceType="Either" requireAccess="Script" />
            <add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" resourceType="Either" />
        </handlers>
    </system.webServer>
</configuration>

2 个答案:

答案 0 :(得分:0)

您的web.config中似乎有两次(这就是“Parser错误消息:已经定义了部分或组名'system.webServer'”错误意味着)。

在您的应用程序的web.config中搜索并剪切其中的代码并将其粘贴到另一个(确保代码不重复)删除您已从中删除代码的代码

答案 1 :(得分:-1)

如果您使用的是较新版本的IIS或使用Windows Azure,则不需要<ConfigSection>。它内置在新的IIS中。只需继续使用您的web.config中<rewrite>下的<system.webServer>标记。