配置hosts文件,run本地应用

       hosts文件位于 C:\WINDOWS\system32\drivers\etc 下, 利用这个文件,可将本地发布的应用配置成 www.xxx.com 这样的模式来访问本地应用,其步骤如下:
       1. 打开 tomcat 下的 conf 文件下的 server.xml 文件, 将端口 8080 改成 80, 这样当访问 http://localhost 的时候等同于访问 http://localhost:8080 ,因为 localhost 的默认端口是 80.
       2. 打开 hosts 文件,添加
127.0.0.1 localhost
127.0.0.1 www.google.cn
两行, 这样,在浏览器地址栏中敲入 http://www.google.cn , 实际上先访问本地配置的应用,如果没有才访问 google 中文站。
      

你可能感兴趣的:(tomcat,xml,windows,浏览器,Google)