网站首页按预期工作,但整个网站将我重定向到停车页面,如果有人帮助我解决此问题,将非常感谢。
like sub.domain.co.uk and path is /dir1/mywebsite
这是我的 .htaccess
RewriteEngine on
RewriteBase /
答案 0 :(得分:0)
您可以在.htaccess文件中添加以下代码
[HttpGet("{id}/details")]
public ActionResult<string> GetDetails(int id)
{
HttpContext.Items.Add("custom property2", id);
return "value";
}
请参阅此以获取更多详细信息: