Php
php + apache + tomcat
我在 Cent OS 5 中安裝了 PHP、Apache、Tomcat
Tomcat 和 Apache 可以很好地協同工作。
但是PHP!那是問題。
php裡面的Source是這個
<?php phpinfo(); ?> //This works well only if the Filename is index.html but doesn't work if it's index.php..
我對 linux 和 php 都不了解。
希望我的問題是正確的形式。謝謝你
在你
httpd.conf
添加這樣的一行:AddType application/x-httpd-php .php .php3 .php4 .php5
然後重新啟動 Apache,你就在路上了 :)
如果你想讓 index.php 作為你的預設頁面添加
DirectoryIndex index.php index.html
在您的 Apache Virtualhost 條目中。