Intelligencia.UrlRewriter を使用して画像の URL を書き換える方法を教えてください。
ページ faqs.aspx に画像があります。画像はデータベースから取得され、contentimage.aspx にレンダリングされます。
画像ソースはhttp://localhost/MySite/SG/FAQs/images/en/bridge_singapore.jpgです。http://localhost/MySite/ContentImage.aspx?id=SG&type=FAQs&lang=en&filename=bridge_singapore.jpg として書き換える必要があり
ます。
現在、以下のように書いていて全く動きません。
<rewrite url="~/(.+)/faqs/images/(.+)/(.+).jpg" to="~/contentimage.aspx?id=$1&type=faqs&lang=$2&filename=$3" />