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 アプリケーションに書き換えエンジンを追加する必要がありますか?
このリンクをたどりましたが、取得できませんでした。
ステップバイステップのプロセスまたはサンプルスクリプトを教えてください。