为了账号安全,请及时绑定邮箱和手机立即绑定

让apache-tomcat支持php

标签:
PHP

原环境为 Apache-tomcat-7.0,现在需要支持php

 

先装一个扩展

wget http://ftp.gnu.org/gnu/libiconv/libiconv-1.14.tar.gz

 tar -zxf libiconv-1.14.tar.gz

cdlibiconv-1.14

./configure--prefix=/usr/local/libiconv

 make && make install

 

 

编译php

./configure--prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc--with-openssl --enable-cli --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd--with-iconv=/usr/local/libiconv --with-freetype-dir --enable-maintainer-zts--with-zlib --enable-xml --enable-rpath --enable-bcmath --enable-shmop--enable-sysvsem --enable-inline-optimization --with-curl --enable-exif--enable-mbregex --enable-fpm --enable-mbstring --with-gd --enable-gd-native-ttf --with-mhash --enable-pcntl--enable-sockets --with-xmlrpc --enable-zip --enable-soap--with-mcrypt=/usr/local --enable-force-cgi-redirect --enable-cgi &&make ZEND_EXTRA_LIBS='-liconv' && make install

 

 

 修改Tomcat 配置

Web.xml

<servlet>

   <servlet-name>php</servlet-name>

   <servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class>

    <init-param>

     <param-name>clientInputTimeout</param-name>

     <param-value>200</param-value>

    </init-param>

    <init-param>

     <param-name>debug</param-name>

      <param-value>0</param-value>

    </init-param>

    <init-param>

     <param-name>executable</param-name>

     <param-value>/usr/local/php/bin/php-cgi</param-value>

    </init-param>

    <init-param>

       <param-name>passShellEnvironment</param-name>

       <param-value>true</param-value>

    </init-param>

    <init-param>

     <param-name>cgiPathPrefix</param-name>

      <param-value>/</param-value>

    </init-param>

    <load-on-startup>5</load-on-startup>

</servlet>


<servlet-mapping>

   <servlet-name>php</servlet-name>

   <url-pattern>*.php</url-pattern>

</servlet-mapping>

 

 

<welcome-file-list>

   <welcome-file>index.html</welcome-file>

   <welcome-file>index.htm</welcome-file>

   <welcome-file>index.jsp</welcome-file>

   <welcome-file>index.php</welcome-file>

</welcome-file-list>


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消