etc/hosts
我可以在文件中设置对本地域中所有子域的访问权限吗?
喜欢
127.0.0.1 localhost *.domain.local
现在看起来
127.0.0.1 localhost domain.local mail.domain.local web.domain.local other.domain.local ...
答案1
不,通配符是 DNS 查找功能;尝试在您的 DNS 中执行相同操作/etc/hosts
不起作用。抱歉。
答案2
不,你不能在 hosts 文件中这样做。不过你应该能够设置域名系统很容易做到这一点。添加
address=/domain.local/127.0.0.1
dnsmasq.conf 文件应该可以满足您的要求。