希望下面的对你有用1.下载mod_jk2-2.0.43.dll 并将它复制到apache中的modules目录中。 
2.我的电脑—>属性—>高级—>环境变量 在“系统变量”中“新建”   在变量名中输入:CATALINA_HOME,
变量值中输入:c:\tomcat //假设tomcat的路径在c:3.编辑APACHE的配置文件httpd.conf,在文件的最后加上以下几行。 
LoadModule jk2_module modules/mod_jk2-2.0.43.dll 
ServerAdmin [email protected] //你配置apache时的邮件 
DocumentRoot "C:/Tomcat4.1/webapps" //你的网页的路径
ServerName binger520 // 你配置apache时的服务器名
DirectoryIndex index.htm index.html index.jsp //为了自动解释JSP类型的文件4.在APACHE安装目录的conf子目录下加入文件workers2.properties,其内容如下: # Define the communication channel 
[channel.socket:localhost:8009] 
info=Ajp13 forwarding over socket 
tomcatId=localhost:8009 
# Map All webapp to the Web server uri space 
[uri:/*] 
info=Map the whole webapp 其中,URI的部分不一定按上面的定义,可以设置对自己有用的子路径。
比如只想公开examples子目录下的东东时,可以如下定义: 
# Map the Tomcat examples webapp to the Web server uri space 
[uri:/examples/*] 
info=Map the whole webapp 5.Tomcat\conf目录下建一个worker.properties文件内容如下:
# ---------这里是你的安装目录---------需要修改
workers.tomcat_home= C:\apache
#---------这个也要修改---------
workers.java_home=C:\jdk
#
#
ps=\ 
worker.list=ajp13 
worker.ajp13.port=8009 
worker.ajp13.host=localhost 
worker.ajp13.type=ajp13 
worker.ajp13.lbfactor=1
6.分别起动APACHE和TOMCAT 
7.测试(test.jsp)内容如下:
<%@ page contentType="text/html;charset=gb2312"%> 
<html> 
<body> 
<%=1+1 %>
</body> 
</html> 浏览器里输入http://localhost/test.jsp//结果ie出现2的话那么你成功了。