0

我是 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 应用程序吗?

我已经通过这个链接,但我无法得到它。

有人可以向我建议一步一步的过程或示例脚本吗?

4

4 回答 4

1

使用以下规则,每次都像魅力一样工作!

<rule name="san aspx">
  <!--Removes the .aspx extension for all pages.-->
  <match url="(.*)" />
  <conditions logicalGrouping="MatchAll">
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  </conditions>
  <action type="Rewrite" url="{R:1}.aspx" />
</rule> 
于 2013-08-24T15:08:16.583 回答
0

好像您还没有在 Web 项目中为类 URLRewriter 添加 dll 引用。添加此引用以解决此问题。

于 2013-05-17T13:36:56.087 回答
0

(作为自己编写的替代方案)

IIS 7 URL 重写模块:

http://www.microsoft.com/en-gb/download/details.aspx?id=7435

IIS 5/6:

http://iirf.codeplex.com/

于 2013-05-17T13:55:38.940 回答