问一个伪静态htaccess的写法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了问一个伪静态htaccess的写法相关的知识,希望对你有一定的参考价值。
要求把read.php?cid=72&bid=72533 类型的变为read/72/72533.htm
show.php?cid=72&bid=72533&rid=4715169变为show/72/72533/4715169.htm
chapter.php?cid=72&bid=72124变为chapter/72/72124.htm
测试成功了马上给分,在线等
RewriteRule ^show/([0-9]+)/([0-9]+)/([0-9]+)/([0-9]+)\.html$ /show.php?cid=$2&bid=$3&rid=$4 [L]
RewriteRule ^chapter/([0-9]+)/([0-9]+)\.html$ /chapter.php?cid=$2&bid=$3 [L] 参考技术A RewriteRule ^(.*)/([0-9]+)/([0-9]+)\.htm $1.php?cid=$2&bid=$3 [L]
RewriteRule ^(.*)/([0-9]+)/([0-9]+)/([0-9]+)\.htm $1.php?cid=$2&bid=$3&rid=$4 [L]
以上是关于问一个伪静态htaccess的写法的主要内容,如果未能解决你的问题,请参考以下文章
伪静态规则写法RewriteRule-htaccess详细语法使用
PHP 伪静态规则写法RewriteRule-htaccess详细语法使用
PHP 伪静态规则写法RewriteRule-htaccess详细语法使用