要将"/img/"路由到ASP.NET MVC 3中的"/Content/img"文件夹,您可以使用URL重写模块。以下是如何在ASP.NET MVC 3中配置URL重写的步骤:
<rewrite>
<rules>
<rule name="Redirect img to Content img">
<match url="^img/(.*)$" />
<action type="Rewrite" url="/Content/img/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
这段代码将创建一个名为"Redirect img to Content img"的URL重写规则,该规则将以"^img/(.*)$"为匹配模式的URL重写为"/Content/img/{R:1}"。其中"{R:1}"表示匹配模式中第一个括号捕获的内容。
推荐的腾讯云相关产品:
腾讯云产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云