1.基于主机名的虚拟主机配置
在随意盘符下建立一个目录作为虚拟地址的目录。例如:F:\virtualhost1,在其下建立 test1.html,写入内容,例如 test。在tomcat/conf/service.xml中加入如下配置一段<Host> 配置
打开C:\Windows\System32\drivers\etc 下面的hosts文件 加入127.0.0.1 site1
假设在tomcat、wenbapps下的ROOT文件夹下有hello.html内容写入hello。
启动tomcat,在浏览器输入:http://localhost:8080/index.html—将显示hello,访问的是tomcat下的资源;在浏览器输入:http://site1:8080/index.html—将显示test,访问的是F:\virtualhost1下的资源。
实际上二者的ip是一样的,都是127.0.0.1,但是却实现了访问两个“主机”上的资源,一个是tomcat下的,一个是F盘下的。
2.基于端口的虚拟主机配置
在随意盘符下建立一个目录作为虚拟地址的目录。例如:F:\virtualhost2,在其下建立 test1.html,写入内容例如:test2
在tomcat/service.xml 里半加入一段 <Service> 配置,如下
<Service>
<Connector ……./>
<Engine defaultHost=”localhost” name=”Catalina” >
…….
</Engine>
</Service> 这里的配置也是文件原本就有的,下面是增加的。
<Service>
<Connector connectionTimeout=”20000″ port=”8082″ protocol=”HTTP/1.1″ redirectPort=”8443″/> 因为是基于端口的配置,这里的8082端口是新增的,以后的访问将用到
<Engine name=”second” debug=”0″>
<Host appBase=”F:\virtualhost2″ autoDeploy=”true” name=”site2″ unpackWARs=”true”>
<Context path=”” docBase=”.” debug=”0″ />
</Host>
</Engine>
</Service>
启动tomcat,输入 http://localhost:8080/index.html—将显示tomcat/webapps/ROOT/index.html 里边的内容;输入 http://localhost:8082/index.html—将显示F:\virtualhost2 下的index.html 里边的内容。
这里通过不同的端口进来实现了,不同基于不同端口的虚拟空间的配置。
以上是关于tomcat怎么配虚拟主机的知识分享,西部数码网站提供多类型、高性价的虚拟主机产品,购买链接 https://www.west.cn/services/webhosting/