我在OS X 10.7上运行MAMP.我在Apache中设置了一个虚拟主机,如下所示:
<Directory "/sites/example.com/"> Allow From All AllowOverride All </Directory> <VirtualHost *:80> ServerName "example.local" ServerAlias "www.example.local" DocumentRoot "/sites/example.com" </VirtualHost>
在/ etc / hosts中我添加了这个:
127.0.0.1 example.local
一切正常,可能一周或两周之前非常快.我不确定发生了什么变化,但现在几乎每次加载页面时,请求的DNS查找部分都会花费超过5秒,正如Firebug和Chrome报告的那样.
Ping本地地址看起来不错:
->ping example.local PING example.local (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.073 ms
如果我在第一次连接后立即刷新,则DNS查找似乎被缓存.但是稍后再次刷新会导致再次查找缓慢.
任何帮助,将不胜感激!