zoukankan      html  css  js  c++  java
  • aspnetcore 实现简单的伪静态化

    虽然完全静态化URL的网页有打开速度快的优点,但是网站内容巨大的话,势必会使网站的体积变大很多,会有很多的静态化文件,网站迁移的话很麻烦

    另一方面如果网站内容很多的时候修改模板的话,再次静态化的时候会是一个比较大的工作量。实际使用的话还是需要根据自己实际需要来选取。

    配置路由信息,注意顺序,伪静态的路由要在默认路由之前

    app.UseMvc(routes =>
    {
        routes.MapRoute("Notice", "/Notice/{path}.html", new
        {
            controller = "Home",
            action = "NoticeDetails"
        });
    
        routes.MapRoute(name: "areaRoute",
            template: "{area:exists}/{controller=Home}/{action=Index}");
    
        routes.MapRoute(
            name: "default",
            template: "{controller=Home}/{action=Index}");
    });

    控制器:

    /// <summary>
    /// 公告详情
    /// </summary>
    /// <param name="path">访问路径</param>
    /// <returns></returns>
    public async Task<ActionResult> NoticeDetails(string path)
    {
        if (string.IsNullOrWhiteSpace(path))
        {
            return RedirectToAction("Notice");
        }
        try
        {
            var noticeBll = HttpContext.RequestServices.GetService<IBLLNotice>();
            var notice = await noticeBll.FetchAsync(n => n.NoticeCustomPath == path.Trim());
            if (notice != null)
            {
                notice.NoticeVisitCount += 1;
                await noticeBll.UpdateAsync(notice, x => x.NoticeVisitCount);
    
                return View(notice);
            }
            else
            {
                return RedirectToAction("Notice");
            }
        }
        catch (Exception ex)
        {
            Logger.Error(ex);
            throw;
        }
    }

    实际效果:

    https://reservation.weihanli.xyz/Notice/test-notice.html

  • 相关阅读:
    Django使用redis
    Django中static media的简单配置
    套接字,TCP,UDP
    nginx常用配置
    使用systemctl管理nginx
    jumpserver 安装
    elasticsearch7.x集群安装(含head、bigdesk、kibana插件)
    codepush安装
    mysql优化后的主配置文件
    nginx优化、负载均衡、rewrite
  • 原文地址:https://www.cnblogs.com/wwwan/p/11209945.html
Copyright © 2011-2022 走看看