Half a year ago I installed XAMPP on my Computer with a few virtualhosts ending with ".dev". When I now try to open those websites in Chrome it gives me the error ICANN Name Collision. After some research I found out that im not the only one with the Problem and that the only way around is to Change to ".local".
So I changed my Host File and httpd.config restarted the System/FLushed the DNS Cache but it's not working anymore. I can't acces the Server with the new local Domain names. When I use IE and type in example.dev (or whatever adresse i used before) it still redirects to localhost but not to the old Directory. Therefore I guess that Apache noticed the Change and is on the new configuration but my Browser somehow tell me they can't find the Server.
What is the most likely Error? Which Error Logs might be helpful?
If I use the XAMPP/Apache Shell and type in httpd -S it prints me out the current v-Host Settings like in the v-host.config file.
Host File:
127.0.0.1 db.local
127.0.0.1 test.local
127.0.0.1 www.test.local
127.0.0.1 host.local
127.0.0.1 www.host.local
apache\conf\extra\httpd-vhosts.conf:
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot "C:/XAMPP_DEV/htdocs"
</VirtualHost>
<VirtualHost *:80>
ServerName db.local
DocumentRoot "C:/XAMPP_DEV/phpmyadmin"
</VirtualHost>
<VirtualHost *:80>
ServerName test.local
ServerAlias www.test.local
DocumentRoot "C:/XAMPP_DEV/htdocs/test"
</VirtualHost>
<VirtualHost *:80>
ServerName host.local
ServerAlias www.host.local
DocumentRoot "C:/XAMPP_DEV/htdocs"
</VirtualHost>
Thats my V-Host Configurtion and Host file; I removed all the lines starting with #.