linux下面如何给apache安装rewrite模块

WBOY
Release: 2016-06-13 11:06:56
Original
871 people have browsed it

linux上面怎么给apache安装rewrite模块?
在网上找到的答案是: 在apache安装包里面生成一个mod_rewrite.so文件   实验成功 

问题:

这个服务器我不知道apache安装包在哪  find也找不到  (linux新手) 

直接把我本地的mod_rewrite.so这个传上去可以吗?
------解决方案--------------------
看看自己的apache 是什么版本,去下一个源码包然后编译,你本地的应该是不可以的。当然你可以自己试看看,
要么就干脆下个新版本整个重新编译,编译的时候加上 rewrite模块 enable-rewrite.你在用什么linux? rh?

增加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.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template