PHP开发实例大全(提高卷) 中文完整pdf扫描版[244MB]
利用.htaccess实现伪静态功能在web开发中应该是经常用到的,下面作者总结了一些比较常用的利用.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.kuitao8.com/404.html
(6)禁止直接访问web目录中的后缀名为 .bak .inc 的文件
order deny,allow deny from all
转载请注明:谷谷点程序 » .htaccess伪静态实例分析