我新加入 URL 重新撰写, 并试图使用以下脚本删除.aspx 扩展名 。 config
<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.
需要我在我的网络应用程序中添加重写引擎吗?
我翻阅了""http://msdn.microsoft.com/en-us/library/ms972974#urlrefrey_topic3""rel="nofollow" >这个链接 ,但我搞不懂。
有没有人能建议我一步一步的 过程或样本脚本?