我正在使用WebpackDevMiddleware for Development版本来提供使用客户端路由的Vue.js应用程序。可以从根URL提供SPA应用程序,但是如果我尝试使用任何客户端深层链接,则会得到404。
Notes在Production正常运行时运行。
我想要什么:
http://locahost/
-提供vue应用。http://localhost/overlays/chat
-提供vue应用。http://localhost/api/*
-提供服务器端处理的api路由。在此repository中,该问题的最小再现性。您可以在发生错误的开发环境中使用vscode调试来运行它。还有一个脚本/scripts/local-production
将在生产环境中构建并运行,并在此环境中按预期工作。
我的Startup.cs的相关部分如下所示:
public class Startup
{
public IConfiguration Configuration { get; }
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
// In production, the Vue files will be served
// from this directory
services.AddSpaStaticFiles(configuration =>
{
configuration.RootPath = Configuration["Client"];
});
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
//set up default mvc routing
app.UseMvc(routes =>
{
routes.MapRoute("default", "api/{controller=Home}/{action=Index}/{id?}");
});
//setup spa routing for both dev and prod
if (env.IsDevelopment())
{
app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions {
HotModuleReplacement = true,
ProjectPath = Path.Combine(env.ContentRootPath, Configuration["ClientProjectPath"]),
ConfigFile = Path.Combine(env.ContentRootPath, Configuration["ClientProjectConfigPath"])
});
}
else
{
app.UseWhen(context => !context.Request.Path.Value.StartsWith("/api"),
builder => {
app.UseSpaStaticFiles();
app.UseSpa(spa => {
spa.Options.DefaultPage = "/index.html";
});
app.UseMvc(routes => {
routes.MapSpaFallbackRoute(
name: "spa-fallback",
defaults: new { controller = "Fallback", action = "Index" });
});
});
}
}
}
答案 0 :(得分:3)
我能够使用状态码页面中间件解决这个问题,以处理所有状态码并使用根路径重新执行。这将导致为spa应用程序提供400-599范围内的所有状态代码,这不是我想要的,但是至少可以让我再次工作。
//setup spa routing for both dev and prod
if (env.IsDevelopment())
{
//force client side deep links to render the spa on 404s
app.UseStatusCodePagesWithReExecute("/");
app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions {
HotModuleReplacement = true,
ProjectPath = Path.Combine(env.ContentRootPath, Configuration["ClientProjectPath"]),
ConfigFile = Path.Combine(env.ContentRootPath, Configuration["ClientProjectConfigPath"])
});
}
希望这会对将来可能遇到此问题的人有所帮助。