#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
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。