我正在用 VNext + OSX + Chrome 做一些实验。我正在尝试获取 woff2 文件
GET http://localhost:5003/fonts/fontawesome-webfont.woff2?v=4.3.0
但是会发生错误。请参阅下面的请求标头
Remote Address:127.0.0.1:5003
Request URL:http://localhost:5003/fonts/fontawesome-webfont.woff2?v=4.3.0
Request Method:GET
Status Code:404 Not Found
这是我的 Startup.cs
public void Configure(IApplicationBuilder app)
{
app.UseStaticFiles();
app.UseServices(services =>
{
services.AddMvc();
});
// Add MVC to the request pipeline
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller}/{action}/{id?}",
defaults: new { controller = "Home", action = "Index" });
});
}
我在 Github 的 AspNet 项目中看到了有关 StaticFiles 的内容(链接如下),它似乎得到了支持。
你们能给我一些帮助吗?