Home > Article > Backend Development > How to deploy php project under tomcat
How to deploy php projects under tomcat: 1. Unzip php to the root directory of tomcat and change the folder name to php; 2. Add the path where php.exe is located to the path; 3. Modify the "tomcat/conf/context.xml" file; 4. Restart the tomcat service.
The operating environment of this tutorial: Windows 7 system, PHP version 8.1, Dell G3 computer.
How to deploy php project under tomcat?
Deploy php under tomcat
Due to the need to test a PHP environment. Therefore, it is recorded here.
Environment
OS: win8.1 up1 64bit
tomcat: 8.0.14 64bit
php:php-5.6. 2-Win32-VC11-x64.zip
Extract php to the root directory of tomcat, change the folder name to php
Add the path where php.exe is located to the path.
Copy php.ini-development. Rename php.ini
Open extension_dir = "ext" option
Modify cgi.force_redirect to cgi.force_redirect = 0
Modify the tomcat/conf/context.xml file
Add the privileged="true" attribute to ea5df8e8cd78341fd0bad01213e99e64, that is: 5a32ba8bcef76182973dfb83a83efd6f
Add
<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>D:\tomcat\php\php-cgi.exe</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>WEB-INF/phpbin</param-value> </init-param> <load-on-startup>5</load-on-startup> </servlet>
to 8459cedd22f378aa35db2cd2b63decac
<servlet-mapping> <servlet-name>php</servlet-name> <url-pattern>/phpbin/*</url-pattern> </servlet-mapping>
Restart the tomcat service:
In webapps\ROOT\ Create a new phpbin folder under WEB-INF
Create a new index.php
The content inside is:
<?php phpinfo();?>
http://localhost:8080/phpbin /index.php sees the following content. Indicates that the deployment is successful:
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to deploy php project under tomcat. For more information, please follow other related articles on the PHP Chinese website!