Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 maven 和 php 并将我的代码打包到 phar 存档并将其部署在 xampp 上。在java中,我们为应用服务器的webapp文件夹复制war文件,如tomcat。我如何在 php 中做到这一点?我只是去把 .phar 放在 xampp/htdocs 文件夹中吗?
谢谢
您需要告诉 Apache 它应该.phar使用 PHP 运行文件:
.phar
cat /etc/apache2/mods-enabled/php5.conf |head -n3 <IfModule mod_php5.c> <FilesMatch "\.ph(ar|p3?|tml)$"> SetHandler application/x-httpd-php
有关详细信息,请参阅http://cweiske.de/tagebuch/phar-webserver.htm 。