<b>Linux下Apache安装/增添mod_rewrite模块</b>[Linux安全]
本文“<b>Linux下Apache安装/增添mod_rewrite模块</b>[Linux安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
假如你的服务器apache还没有安装,那很简单,在编译apache时将mod_rewrite模块编译进去便可以,相关文档可以在http://man.chinaunix.net/newsoft …… ew/mod/mod_rewrite. html中找到.假如你的apache已经安装好了,目前只想编译出mod_rewrite.so模块,在apache中举行加载,下面我们就介绍这个办法.
以Fedora操作系统举行举例:
1)初次安装apache,在编译时增添——enable-rewrite选项.
如./configure ——prefix=/usr/local/apachel ——enable-so ——enable-mods-shared=all ——enable-rewrite ——enable-cache
2)增添mod_rewrite模块
# find . -name mod_rewrite.c //在apache的源码安装目录中探求mod_rewrite.c文件
# cd PATH/to/mod_rewrite.c //进入包含mod_rewrite.c文件的目录
# /usr/local/apache/bin/apxs -c mod_rewrite.c //apxs应指定绝对途径,在你当前正在利用apache的bin目录里
# /usr/local/apache/bin/apxs -i -a -n mod_rewrite mod_rewrite.la
假如没有什么错误的话,应当在你的apache的modules目录中编译出一个mod_rewrite.so文件.
编辑httpd.conf文件,确认httpd.conf中已经包含mod_rewrite.so的加载语句,以下:
LoadModule rewrite_module modules/mod_rewrite.so
这时,你的apache应当已经支持rewrite了.
vicos注:完成之后,记得重启服务器apache.
以上是“<b>Linux下Apache安装/增添mod_rewrite模块</b>[Linux安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |