| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System.Collections.Generic;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Logging;
- using MySystem.MainModels;
- using System.Linq;
- using Library;
- namespace MySystem.Controllers
- {
- public class HomeController : Controller
- {
- private readonly ILogger<HomeController> _logger;
- public HomeController(ILogger<HomeController> logger)
- {
- _logger = logger;
- }
- public IActionResult Index()
- {
- return View();
- }
- public IActionResult Error()
- {
- string isapi = Request.Headers["Api"].ToString();
- if (isapi != "1")
- {
- if (Response.StatusCode == 500)
- {
- return Redirect("/public/errpage/pc/500.html");
- }
- else if (Response.StatusCode == 502)
- {
- return Redirect("/public/errpage/pc/502.html");
- }
- else if (Response.StatusCode == 404)
- {
- return Redirect("/public/errpage/pc/404.html");
- }
- }
- return View();
- }
- #region ios配置文件
- [Route("/apple-app-site-association")]
- public Dictionary<string, object> iosSetting()
- {
- Dictionary<string, object> result = new Dictionary<string, object>();
- Dictionary<string, object> webcredentials = new Dictionary<string, object>();
- List<string> apps = new List<string>();
- apps.Add("7HQBL6X2N5.com.kexiaoshuang.ios");
- webcredentials.Add("apps", apps);
- result.Add("webcredentials", webcredentials);
- return result;
- }
- #endregion
- }
- }
|