Tomcat运行PHP项目

本文记录如何在windows环境中将php项目部署在tomcat下。不懂php语言,偶然一次需要把php部署在tomcat下,经过网上搜索部署成功,记录一下。

1、下载安装xampp,下载地址 https://www.apachefriends.org/download.html。

Tomcat运行PHP项目_第1张图片

Tomcat运行PHP项目_第2张图片

2、设置xampp环境变量。

Tomcat运行PHP项目_第3张图片

3、cmd运行php -v,安装成功。

Tomcat运行PHP项目_第4张图片

4、Tomcat环境。解压缩Tomcat压缩包到指定位置,我使用的版本是  apache-tomcat-7.0.70

5、修改Tomcat下conf下的web.xml,添加如下内容。

  
    php  
    org.apache.catalina.servlets.CGIServlet  
      
      clientInputTimeout  
      200  
      
      
      debug  
      0  
      
      
      executable  
      C:\xampp\php\php-cgi.exe  
      
      
        passShellEnvironment  
    true  
  
      
      cgiPathPrefix  
      WEB-INF/php  
      
     5  
  
  
    php  
    /php/*  
  
6、修改Tomcat下conf下的context.xml,把标签添加 privileged="true" ,修改后

7、在Tomcat下的webapps\ROOT\WEB-INF新建php文件夹,新建index.php,文件内容为

phpinfo();?>  
8、启动tomcat,本机浏览器访问,如果页面出现如下内容

This PHP CGI binary was compiled with force-cgi-redirect enabled. This means that a page will only be served up if the REDIRECT_STATUS CGI variable is set, e.g. via an Apache Action directive.

For more information as to why this behaviour exists, see the manual page for CGI security.

For more information about changing this behaviour or re-enabling this webserver, consult the installation file that came with this distribution, or visit the manual page.

进入xampp安装目录下,进入php目录,修改php.ini ,将 ;cgi.force_redirect = 1 修改为  cgi.force_redirect = 0

9,访问页面如下,部署成功

Tomcat运行PHP项目_第5张图片

10,如果遇到启动提示丢失VCRUNTIME140.DLL,可以下载点击下载 安装即可。

你可能感兴趣的:(php)