How to change localhost/site to site.dev
问题 I use XAMPP for local development and I've heard of developers that change the url structure from localhost/site to site.dev, but I'm not sure how to go about it. How can I change it and is there anything I should know before changing it? 回答1: You'll need to add an entry in your host file to map site.dev to localhost 127.0.0.1 site.dev www.site.dev and add a virtual host in apache to detect it <VirtualHost *:80> DocumentRoot /path/to/document/root/site/ ServerName site.dev ServerAlias www