我正在尝试创建子站点(***。com / rentals),并在导航到uri时不断收到服务器错误。我在wwwroot中将文件夹“ rentals”创建为子文件夹,并创建了如下路径:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace hillandco.Controllers
{
public class RentalsController : Controller
{
// GET: /<controller>/
public IActionResult Index()
{
return View();
}
}
}
并使用以下代码生成了一个新的控制器:
df3.pivot_table(values = 'tag', index= 'cuts', aggfunc=[np.sum,
np.mean],dropna=True).sort_values('cuts')
我创建了一个Index.html文件,不幸的是,使用'https://***.com/rentals'导航到子站点的根目录仍然出错。对于我在这里缺少的任何帮助将是很棒的!
答案 0 :(得分:0)
已解决。路由和控制器操作按原样正确工作;问题是我试图在wwwroot中使用子文件夹。当我在“视图”下创建一个文件夹时,我可以正常使用该子站点。
这种行为似乎很奇怪,但是我认为从MVC角度以及asp.net-core中URI的工作方式来看,这是有道理的。