我正在使用带有社区子域概念的 Asp.net mvc 框架开发一个 Web 应用程序。
我已经实现了 *.example.com 等域的通配符映射的概念。为了在 vs 2008 中测试概念,我编辑了 hosts 文件并添加了一些子域,例如
127.0.0.1 a.localhost
127.0.0.1 b.localhost
当我请求 url http://a.localhost:1760/我得到错误
尝试检索 URL 时:http://a.localhost:1760/
遇到以下错误:
Unable to determine IP address from host name for a.localhost
dns 服务器返回:
Name Error: The domain name does not exist.
这意味着:
缓存无法解析 URL 中显示的主机名。检查地址是否正确。
我应该怎么做才能解决这个错误。