12345678910111213141516171819 |
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.Mvc;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZFW.CMS.Builder.Controllers
- {
- public class HomeController:Controller
- {
- public IActionResult Index([FromServices]IHostingEnvironment env)
- {
- return PhysicalFile(env.WebRootPath + "/index.html", "text/html");
- }
- }
- }
|