我是 URLRewriting 的新手,并尝试在我的 web.config 中使用以下脚本删除 .aspx 扩展名
<configuration>
<configSections>
<section name="rewriteModule" type="RewriteModule.RewriteModuleSectionHandler, RewriteModule"/>
</configSections>
<connectionStrings>
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to clean URL" stopProcessing="true">
<match url="^([a-z0-9/]+).aspx$" ignoreCase="true"/>
<action type="Redirect" url="{R:1}"/>
</rule>
</rules>
</rewrite>
</system.webServer>
但是,我没有成功。此外,以下代码块给了我一个错误。
<httpHandlers>
<add verb="*" path="*.aspx"
type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
</httpHandlers>
> Could not load file or assembly 'URLRewriter' or one of its
> dependencies. The system cannot find the file specified.
我需要将重写引擎添加到我的 Web 应用程序吗?
我已经通过这个链接,但我无法得到它。
有人可以向我建议一步一步的过程或示例脚本吗?