第一步:配置server.xml文件。 <Host name="diy.com" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> <Context Path="" reloadable="true" docBase="D:/workspace/diy"/> </Host> 在 </Engine> </Service> </Server> 上面加上上面的代码。 注: docBase:表示工程所在目录。工程是发表后和发表前好像都可。 第二步:修改hosts文件。 hosts文件位置”C:/WINDOWS/system32/drivers/etc/hosts“。 在 127.0.0.1 localhost 下面加上 127.0.0.1 diy.com 输入http://diy.com:8080即可访问。 |