Web服务器和FTP服务器的安装
2、在Apache上配置动态程序环境续
修改后的文件如下所示:
#
# PHP is an HTML-embedded scripting language which attempts to
make it
# easy for developers to write dynamically generated webpages.
#调用PHP模块,Redhat Linux中包括了PHP4的模块libphp4.so供Apache使用。
LoadModule php4_module modules/libphp4.so
#
# Cause the PHP interpreter to handle files with a .php extension.
#
<Files *.php>
SetOutputFileter PHP
SetInputFilter PHP
LimitRequestBody 524288
</Files>
# AddType application/x-httpd-php-source .phps
#
# Add index.php to the list of files that will be served as
directory
# indexes.
#设置目录的默认文档
DirectoryIndex index.php
第3步:重新启动httpd服务。仅仅更改Apache的配置文件是不够的,这样PHP程序还是不能运行,还要修改/etc/php.ini文件中的如下选项,修改“register_globals=off”为“register_globals=On”。这样PHP程序就可以运行了。
感谢原创作者.书名:大学生攻克Linux系统教程(又名天下没有难学的Linux)