我想为前端团队和测试团队找到一个简单的解决方案,这样当他们在本地工作时,他们就可以覆盖主机头来匹配{tenant}. mydomain.com。你知道我是怎么做到的吗?下面是我的.net 7代码检查主机
var host = Request.Host.Value;
if (string.IsNullOrEmpty(host))
{
return BadRequest("Missing host header.");
}
我了解到hosts
文件可以使用,但不灵活,并且需要在您想要测试另一个租户时进行更改
1条答案
按热度按时间k4emjkb11#
据说 Postman 使用DNS系统。https://github.com/postmanlabs/postman-app-support/issues/3177
也许你需要这个
https://hostsfileeditor.com/
或电动玩具
https://learn.microsoft.com/en-us/windows/powertoys/hosts-file-editor#filtering-host-file-entries