HomeController.cs 341 B

1234567891011121314
  1. using Microsoft.AspNetCore.Hosting;
  2. using Microsoft.AspNetCore.Mvc;
  3. namespace CZFW.CMS.Admin.Controllers
  4. {
  5. public class HomeController:Controller
  6. {
  7. public IActionResult Index([FromServices]IHostingEnvironment env)
  8. {
  9. return PhysicalFile(env.WebRootPath + "/index.html", "text/html");
  10. }
  11. }
  12. }