如何使用静态文件在ASP.NET MVC5中实现相同的行为,就像它在带有app.UseDefaultFiles(); app.UseStaticFiles();
的aspnet-core上工作一样?
我的意思是从根目录的某个文件夹中提供静态文件,例如/wwwroot/some.html
必须在mysite.com/some.html
上打开,/wwwroot/img/test.jpg
必须在mysite.com/img/test.jpg
上打开,等等。
更新:我创建了wwwroot
文件夹,并将以下规则添加到web.config
:
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite Static" stopProcessing="true">
<match url="^(?!(wwwroot/|api/))(.*)$" ignoreCase="true"></match>
<action type="Rewrite" url="/wwwroot/{R:1}" />
</rule>
</rules>
因此,IIS必须从wwwroot
返回文件,除非调用转到/api/something
,但是我总是在index.html
文件夹中得到wwwroot
,而从没有其他文件。 Api的网址效果很好。
我在做什么错了?
答案 0 :(得分:1)
所有工作方式都如此:
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite Static" stopProcessing="true">
<match url="^((?!(wwwroot\/|api\/))(.*))$" ignoreCase="true"></match>
<action type="Rewrite" url="/wwwroot/{R:1}" />
</rule>
</rules>
</rewrite>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<remove name="StaticFile"/>
<add
name="StaticFile"
path="*" verb="*"
modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule"
resourceType="Either"
requireAccess="Read" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
</handlers>
<staticContent>
<mimeMap fileExtension=".*" mimeType="application/octet-stream" />
</staticContent>
<modules>
<remove name="TelemetryCorrelationHttpModule" />
<add name="TelemetryCorrelationHttpModule" type="Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation" preCondition="integratedMode,managedHandler" />
</modules>
</system.webServer>