/ 中存储网

Apache2.2 .htAccess伪静态配置

2014-04-15 09:16:01 来源:ITJS.CN
现在需要搞一个apache伪静态,事实上在这之前我也没有弄过,这时分享一下我的劳动成果,我自己经过实录。

1.上网查资料(你也可以看apache手册)

2.LoadModule rewrite_module modules/mod_rewrite.so去了注释(去了最前面的#)

3.虚拟改目录配置

<Directory />

Options FollowSymLinks

AllowOverride all

Order deny,allow

allow from all

</Directory>

4.在根目录下建.htaccess(你可以用记事本打,然后另存为就OK了)

5.配制规则(在.htaccess文件中贴上)

<IFMODULE mod_rewrite.c>

RewriteEngine on

RewriteBase /

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

</IFMODULE>

6.测试地址栏里输入 t_1.html在test.php输出1就对了。