# tar zxvf httpd-2.2.6.tar.gz# cd httpd-2.2.6# ./configure --prefix=/usr/local/apache2 --enable-so --enable-track-vars --enable-proxy --enable-vhost-alias --enable-cache --enable-disk-cache --enable-mem-cache --enable-rewrite --enable-mods-shared=all# make# make install
复制代码
3,jpeg包
# tar zxvf jpegsrc.v6b.tar.gz# cd jpeg-6b/# mkdir /usr/local/jpeg# mkdir /usr/local/jpeg/bin# mkdir /usr/local/jpeg/lib# mkdir /usr/local/jpeg/include# mkdir /usr/local/jpeg/man# mkdir /usr/local/jpeg/man/man1# ./configure --prefix=/usr/local/jpeg# make# make install# make install-lib
复制代码
4,ttf包
# tar zxvf freetype-2.1.10.tar.gz# cd freetype-2.1.10# ./configure --prefix=/usr/local/freetype# make# make install
复制代码
5,zlib包
# tar zxvf zlib-1.2.3.tar.gz# cd zlib-1.2.3# ./configure# make# make install
复制代码
6,libpng包
# tar zxvf libpng-1.2.12.tar.gz# cd libpng-1.2.12# ./configure# make# make install
复制代码
7,php gd库
# tar zxvf gd-2.0.33.tar.gz# cd gd-2.0.33# ./configure# make# make install# cp gd.h /usr/local/lib/
复制代码
8,xml库(libxml)
# tar jxvf libxml2-2.6.23.tar.bz2# cd libxml2-2.6.23# ./configure# make# make install
复制代码
9,php
# tar zxvf php-5.2.5.tar.gz# cd php-5.2.5# ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-gd --with-jpeg-dir=/usr/local/jpeg --with-ttf --with-freetype-dir=/usr/local/freetype --with-zlib --with-png --with-mysql=/usr/local/mysql/ --with-mbstring --enable-mbstring=all --enable-mbstr-enc-trans --enable-mbregex --enable-track-vars# make# make install# cp php.ini-dist /usr/local/php/lib/php.ini
复制代码
httpd.conf
addtype application/x-httpd-php .php .phtml
复制代码
10,zend
# tar zxvf zendoptimizer-3.3.3-linux-glibc23-i386.tar.gz# cd zendoptimizer-3.3.3-linux-glibc23-i386# ./install.sh
复制代码
四,创建测试页
复制代码
页面搜索gd,显示如下则表示成功:
rewriteengine on rewriterule ^/a([0-9]+).html$ /a$1.php [l]
复制代码
测试是否成功:目录下有a1.php a2.php a3.php当输入a1.html a2.html a3.html时,访问的是以上php文件
在做项目时已其中的链接全写成了html格式。
六,--enable-rewrite 防盗链
rewriteengine on rewritecond %{http_referer} !^http://www.123.com/.*$ [nc] rewriterule .*/.(ppt|zip|rar|doc|wps)$ http://www.123.com/404.html [l]
复制代码
七,关于shtmlapache默认是不支持ssi的,需要更改httpd.conf来进行配置。# vim /usr/local/apache2/conf/httpd.conf把这两行前面的#去掉
addtype text/html .shtmladdoutputfilter includes .shtml
复制代码
然后,搜索options indexes followsymlinks在搜索到的那一行后面添加includes即将该行改变为:options indexes followsymlinks includes
测试,创建文件test.shtml,内容如下: