求apache设置伪静态时的重写规则,该如何处理
程序员文章站
2022-05-13 20:37:45
...
求apache设置伪静态时的重写规则
将这个路径http://localhost/my/show.php?id=9重写成http://localhost/my/show/9
将这个路径http://localhost/my/index.php?type=1&curPage=1重写成
http://localhost/my/index.php/1/1
------解决方案--------------------
RewriteRule /shijing/(.*)/(.*)/(.*).html /morePicShow.php?pic_id=$1&sort_id=$2&house_id=$3
看这个就明白了,
(.*) 对 $1 23 ..
将这个路径http://localhost/my/show.php?id=9重写成http://localhost/my/show/9
将这个路径http://localhost/my/index.php?type=1&curPage=1重写成
http://localhost/my/index.php/1/1
------解决方案--------------------
RewriteRule /shijing/(.*)/(.*)/(.*).html /morePicShow.php?pic_id=$1&sort_id=$2&house_id=$3
看这个就明白了,
(.*) 对 $1 23 ..
相关文章
相关视频
上一篇: PHP GD 生成图片验证码+session获取存储验证码
下一篇: YII 的源码分析(三)