利用.htaccess实现伪静态功能在web开发中应该是经常用到的,尤其是在Apache服务器下,.htaccess是PHP静态生成必备设置,下面作者总结了一些比较常用的利用.htaccess实现伪静态的实例和大家分享。
(1)将 index.php 伪静态成为 index.html
RewriteRule ^index\.html$ index.php
(2)将 news/info.php?id=3 伪静态成为 news/info_3.html
RewriteRule ^news/info_([0-9]{1,})\.html$ news/info.php?id=$1
(3)将 index.php?class_id=2&id=3 伪静态成为 2-3.html
查看代码打印
RewriteRule ([0-9]{1,})-([0-9]{1,})\.html$ index.php?class_id=$1&id=$2
([0-9]{1,})-([0-9]{1,})\.html$是规则,index.php?action=$1&id=$2是要替换的url格式,$1代表第一个括号匹配的值,$2代表第二个,如此类推。
(4)将 tag.php?tag=php教程 或者 tag.php?tag=程序员 伪静态成为 tag/php教程 和 tag/程序员
查看代码打印
RewriteRule ^tag/(.*)$ tag.php?tag=$1
(5)设置 404 跳转
ErrorDocument 404 http://www.phpernote.com/404.html
(6)禁止直接访问web目录中的后缀名为 .bak .inc 的文件
查看代码打印
<FilesMatch "\.(bak|inc)$">
order deny,allow
deny from all
</FilesMatch>
深正互联,是专业的PHP移动网站建设专家,11年网页设计经验,欢迎您来我们公司参观了解更多网站设计信息!
深圳 · 龙岗 · 大运软件小镇22栋201
电话:400 182 8580
邮箱:szhulian@qq.com