我希望我的index.cshtml仅在以下路由处于活动状态时返回:
http://www.example.com/2/345044
以下代码有效,但是当通过以下方式返回剃刀文件的代码时:
返回视图(索引);然后多次再次点击索引动作
使用脚本/图像/样式表标签中的值,如:
标签的值为'css',metaversion的值为'site.css'
那是Layout.cshtml中的url:
r
如何防止这些文件请求触发索引操作?
Startup.cs
<link rel="stylesheet" href="~/css/site.css" />
答案 0 :(得分:0)
默认情况下不启用静态文件。您必须打开要使用的功能:
app.UseStaticFiles();