CentOs中Apache开启rewrite模块详解

Posted njflash

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOs中Apache开启rewrite模块详解相关的知识,希望对你有一定的参考价值。

rewrite是apache环境的一个伪静态功能了,如果我们没有没让Apache开启rewrite功能,网站上所有的rewrite规则都不可使用.

 

centos的配置文件放在: /etc/httpd/conf/httpd.conf

打开文件找到:

LoadModule rewrite_module modules/mod_rewrite.so

将前面"#"去掉,如果不存在则添加上句。

如果你的网站是根目录的话:找到

<Directory />
  Options FollowSymLinks
  AllowOverride None  
</Directory>

将上面的None改为All

如果你的站点不在根目录,设置如下:

 <Directory "/var/www/html/my_directory"> 

Order allow,deny
Allow from all
AllowOverride All
</Directory>

OK,然后重启服务器,service httpd restart ,这样.htaccess就可以使用了。

以上是关于CentOs中Apache开启rewrite模块详解的主要内容,如果未能解决你的问题,请参考以下文章

centos 开启apache伪静态

Ubuntu Apache配置及开启mod_rewrite模块

apache2服务器mod_rewrite模块 开启方法[linux, ubuntu]

Apache如何开启Mod_rewrite模块以及PHPWind伪静态(全伪)

Ubuntu 下apache2开启rewrite隐藏index.php

apache rewrite功能