如何在 Apache 虚拟目录中为 .NET Core 应用程序创建 url

How to create urls for .NET Core application in Apache virtual directory

ASP.NET 核心应用程序是使用 Visual Studion 2019 ASP.NET 核心应用程序项目模板创建的。

它的 _layout.cshtml 包含 css 相对于应用程序根目录的文件路径:

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>@ViewData["Title"] - WebApplication1</title>
    <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
    <link rel="stylesheet" href="~/css/site.css" />
</head>

此应用程序 运行 在 Debian Linux 10 中,apache 在 nettest 虚拟目录中使用 https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-apache

中的说明

Apache mod_proxy 和头模块是用户将 https 请求转发到 kestrel 服务器。 Apache 配置文件:

<Location "/nettest">
    RequestHeader set "X-Forwarded-Proto" expr=%{REQUEST_SCHEME}
    ProxyPreserveHost On
    ProxyPass  http://127.0.0.1:5000/
    ProxyPassReverse  http://127.0.0.1:5000/
</location>

应用程序找不到 css 个文件。浏览器查看源代码显示绝对路径在 html 代码中呈现:

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Home Page - WebApplication1</title>
    <link rel="stylesheet" href="/lib/bootstrap/dist/css/bootstrap.min.css" />
    <link rel="stylesheet" href="/css/site.css" />
</head>

如何强制呈现正确的 URL,eq。相对于当前文件夹,如

lib/bootstrap/dist/css/bootstrap.min.css

或来自应用程序虚拟目录的绝对值:

/nettest/lib/bootstrap/dist/css/bootstrap.min.css

** 更新 **

更改顺序后 css 找到文件。但是示例应用程序模板中的隐私 link 仍然不起作用。

ASP.NET 模板包含:

            <div class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse">
                <ul class="navbar-nav flex-grow-1">
                    <li class="nav-item">
                        <a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Home</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
                    </li>
                </ul>
            </div>

在浏览器中显示为

           <div class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse">
                <ul class="navbar-nav flex-grow-1">
                    <li class="nav-item">
                        <a class="nav-link text-dark" href="/nettest">Home</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link text-dark" href="/nettest/Home/Privacy">Privacy</a>
                    </li>
                </ul>
            </div>

主页 link 有效,但隐私 link 抛出 404 错误。

在模板 HomeController 中定义:

public IActionResult Privacy()
        {
            return View();
        }

当应用程序在 Visual Studio 下 运行 时有效。当应用程序在 Apache 虚拟目录中为 运行 时,如何使私有 link 工作?

配置方法:

        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        // https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-apache?view=aspnetcore-2.2
        app.UseForwardedHeaders(new ForwardedHeadersOptions
        {
            ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
        });

        app.UseAuthentication();


        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseExceptionHandler("/Home/Error");
            // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
            app.UseHsts();
        }
        app.UseHttpsRedirection();
        // origoli:            app.UseStaticFiles();

        //        

        // https://forums.asp.net/post/6327484.aspx
        //  because the middleware
        //app.UsePathBase("/nettest");
        //  strips the /nettest from the pipeline, the static file handler middleware needs to come first:
        app.UseStaticFiles(new StaticFileOptions
        {
            RequestPath = new PathString("/nettest")
        });
        app.UsePathBase("/nettest");
        // in asp.net core, you control the order of middleware and must get it correct.

        app.UseRouting();
        app.UseAuthorization();
        app.UseEndpoints(endpoints =>
        {
            endpoints.MapControllerRoute(
                name: "default",
                pattern: "{controller=Home}/{action=Index}/{id?}");
        });
    }

问题可能与您定义 UseStaticFiles 和 UseAuthentication 的顺序有关。将 UseStaticFiles 移到 UseAuthentication 上方。 更好的方法是使用 Apache 本身来呈现静态文件。