有人注意到 Chrome 有时会将您输入的 URL 更改为与您之前输入的略有不同的 URL 吗?使用隐身模式可以解决该问题,但我想清除缓存的 URL,或者告诉 Chrome 不再更改这些 URL。
我使用 MAMP 设置了一个新的 WordPress 网站。我喜欢为新项目添加子域,因此我添加了127.0.0.1 newsite.localhost
一个/etc/hosts
VirtualHost 到 MAMP 的httpd.conf
,放在newsite.localhost
下面oldsite.localhost
(oldsite
另一个项目在哪里)。我导航到newsite.localhost
,Chrome 将其更改为oldsite.localhost
。我只能newsite
通过隐身标签访问
所有组合都会重定向至oldsite.localhost
http://localhost
localhost
http://newsite.localhost
ETC..
/etc/hosts
编辑:这是我的文件的相关部分:
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
192.168.64.2 localhost
127.0.0.1 oldsite.localhost
127.0.0.1 newsite.localhost
还有 MAMPhttpd-vhosts.conf
<VirtualHost *:80>
ServerName newsite.localhost
DocumentRoot /Users/jared/work/MAMP-hosts/new-site
</VirtualHost>