Apache HTTP 服务项目致力于发展和维护 开源的 HTTP 服务,提供 安全 有效 可扩展的 HTTP 服务,保持与 HTTP 标准同步。
Apache HTTP 服务 (httpd)始发于 1995 年, 是 Apache 软件基金会的一个项目。复制于官网的简介如下。
The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
The Apache HTTP Server ("httpd") was launched in 1995 and it has been the most popular web server on the Internet since April 1996. It has celebrated its 20th birthday as a project in February 2015.
The Apache HTTP Server is a project of The Apache Software Foundation.
PHP 超文本预处理器,是流行的 web 开发语言。复制于官网的简介如下。
PHP (Hypertext Preprocessor) is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world.
安装 httpd 2.4
#yum install httpd httpd-devel mod_ssl
查看版本
#httpd -V
开启 httpd 服务
#apachetcl start
查看开启的 httpd 服务
#ps aux |grep httpd
某版本的 centos 防火墙屏蔽了 httpd 默认的 80 端口,如果是,开启
#iptables -I INPUT -p tcp --dport 80 -j ACCEPT
并保存改变
#service iptables save
用 firefox 查看 httpd 是否运行
#firefox localhost
如果页面出现 ... it means that this site is working properly ... 表示 httpd 运行正常
开启 httpd 服务自启动
#chkconfig httpd on
证实自启动
#systemctl list-unit-files |grep httpd
安装 php 5.4
安装以下 php 组件可能是不错的选择
#yum install php php-devel php-gd php-pecl-memcache php-pspell php-snmp php-xmlrpc php-xml
查看版本
php --version
使用简单的脚本测试 httpd 和 php
httpd 安装后有一个目录 /var/www/html 是 httpd 的默认根目录。把两个脚本 index.html 和 test.php 放置于该目录
index.html 的内容如下
<html>
<head>
<meta charset="utf-8">
<title>apache php test</title>
</head>
<body>
<form action="test.php" method="post">
What is your name: <input type="text" name="fname">
<input type="submit" value="submit">
</form>
</body>
</html>
test.php 的内容如下
welcome <?php echo $_POST["fname"]; ?>!<br>
运行
firefox localhost
填入一个名字并提交,页面跳转
但是可能没有实现需要的效果,这是因为 hpptd 服务没有解析 php 文件,编辑 httpd 的配置文件改善之, 配置文件为
/etc/httpd/conf/httpd.conf
在其中找到 AddType application/x...
在临近位置添加
AddType application/x-httpd-php .php
现在重启 httpd 服务
#apacheclt restart
运行
firefox localhost
顺利的话,能看到一个预期的结果。