我在 Cent OS 5 中安装了 PHP、Apache、Tomcat
Tomcat 和 Apache 可以很好地协同工作。
但是 PHP!那是一个问题。
php 里面的源代码是这样的
<?php phpinfo(); ?> //This works well only if the Filename is index.html but doesn't work if it's index.php..
我对 linux 和 php 都不太了解。
希望我的问题是正确的。谢谢
答案1
在您的httpd.conf
添加中,如下行:
AddType application/x-httpd-php .php .php3 .php4 .php5
然后重新启动 Apache,您就可以开始了 :)
答案2
如果你想将 index.php 设为默认页面,请添加
DirectoryIndex index.php index.html
在您的 Apache Virtualhost 条目内。