Area区域路由的配置2

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace LayUICore.Areas.Admin.Controllers
{
public class IndexController : Controller
{
[Area("Admin")]
public IActionResult Index()
{
//https://q.cnblogs.com/q/126307/
return View();
}
}
}

原文地址:https://www.cnblogs.com/wugh8726254/p/13059232.html