Я пытаюсь реализовать подход 3 из этой статьи перезаписи .
Я добавил все необходимые настройки (в web.config для модуля UrlRewriter), но когда я пытаюсь добавить это в web.config:
<configuration>
<configSections>
<sectionGroup>
<section name="rewriter"
requirePermission="false"
type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
</sectionGroup>
</configSections>
<system.web>
<httpModules>
<add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter"/>
</httpModules>
</system.web>
<rewriter>
<rewrite url="~/products/(.+)" to="~/products.aspx?category=$1" />
</rewriter>
</configuration>
это дает мне:
Нераспознанный раздел конфигурации
ReWriter ...
Пожалуйста, дайте мне знать, ПОЧЕМУ это говорит мне, что я поставил не в том месте, что переписал узел XML?
Спасибо ...
Решение: Я поместил узел section в sectionGroup, а он должен быть непосредственно в configSections