其他分享
首页 > 其他分享> > 山寨Google服务器

山寨Google服务器

作者:互联网

具体实现

第一步:修改Windows的host文件,在其中加入如下语句:

127.0.0.1 www.google.com

第二步:修改Tomcat下的cfg/server.xml文件,在其中加上:

<Host name="www.google.com" appBase="google" unpackWARs="true" autoDeploy="true">
 </Host>

第三步:创建创建web项目

在Tomcat根目录下新建一个名称为google的文件夹(和第二步中Host标签的appBase属性的值相同),在其中创建子文件夹ROOT,然后在ROOT目录中添加index.html,代码如下:

<center>
  <h2>GOOGLE</h2>
  <form action="googleSearch" method="post">
    <input type="text" name="keys" style="width:50%;">
    <input type ="submit" value="search">
  </form>
</center>

最后启动Tomcat,然后打开浏览器,在地址栏中输出"www.google.com",会看到类似于Google搜索界面的效果。

标签:www,Google,Tomcat,com,google,山寨,服务器,ROOT
来源: https://blog.csdn.net/lianghecai52171314/article/details/118020225