阿里云url解析,发布web后去除url中的端口号

时间:2024-06-29 17:04:02

归根结底就是80端口的使用,不是http的80 的 或 https的  都得加端口号

[问题描述]

http://wisecores.wisers.com:8080/JsonProject/servlet/JsonServlet?action_flag=person

如上,如果发布出去,不可能挂个":8080"在url上。

1.以windows下的tomcat来测试

丢两个web项目进去

阿里云url解析,发布web后去除url中的端口号

2.server.xml配置如下

       <Host  name="wisecores.wisers.com" appBase="webapps"  unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="F:\apache-tomcat-7.0.11\webapps\JsonProject" debug="0" reloadable="true"/>
</Host>
<Host name="sls.microsoft.com" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="F:\apache-tomcat-7.0.11\webapps\Haifa" debug="0" reloadable="true"/>
</Host>

3.编辑C:\Windows\System32\drivers\etc下的hosts文件加两条内容

127.0.0.1 sls.microsoft.com
127.0.0.1 wisecores.wisers.com

重启服务,访问的结果如下,这样就没有端口url了

阿里云url解析,发布web后去除url中的端口号

阿里云url解析,发布web后去除url中的端口号