/ 中存储网

Apache配置rewrite的方式

2014-07-31 11:52:01 来源:IT技术网
1、首先要开启mod_rewrite模块

#LoadModule Rewrite_module modules/mod_Rewrite.so

去掉前面的#,

2、将里面的AllowOverride none修改为AllowOverride all

Options all     AllowOverride none

Order allow,deny

Allow from all

</Directory>

重启Apache服务器。

3、最后是添加规则了,有两种方式,一种是配置文件中添加,例外一种就是配置.htaccess文件,下面是在配置文件中添加的,注意要加上根目录符号/,本人在测试.htaccess文件时总是不能成功,后来发现在.htaccess文件文件中是不能添加根目录符号/,而配置文件中则一定要加上,

RewriteEngine on

Rewriterule ^/t_(.*).html$ /test.php?id=$1

ErrorDocument 404 /404.html