Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1077847
  • 博文数量: 120
  • 博客积分: 887
  • 博客等级: 准尉
  • 技术积分: 1883
  • 用 户 组: 普通用户
  • 注册时间: 2010-04-05 21:10
个人简介

RHCE,CCNA,熟悉shell脚本

文章分类

全部博文(120)

文章存档

2015年(16)

2014年(20)

2013年(48)

2012年(20)

2011年(16)

分类: 系统运维

2013-08-21 16:19:27

同一tomcat配置多域名
shell # vi /data0/tomcat/apache-tomcat-6.0.36/conf/server.xml

              unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">
    


shell # mkdir /data0/tomcat/apache-tomcat-6.0.36/webapps/wap
shell # cat /data0/tomcat/apache-tomcat-6.0.36/webapps/wap/index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>




Insert title here


<%
response.sendRedirect("");   //跳转url
%>



shell # mkdir /data0/tomcat/apache-tomcat-6.0.36/webapps/web
shell # cat /data0/tomcat/apache-tomcat-6.0.36/webapps/web/index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>




Insert title here


<%
response.sendRedirect("");   //跳转url
%>


阅读(699) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~