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就对了。