日期:2014-05-17  浏览次数:20423 次

求一段rewrite规则
httpd.ini的

[ISAPI_Rewrite]
CacheClockRate 3600
RepeatLimit 32
RewriteRule /(\d+)\.html /index\.php\?p=$1
RewriteRule /(\d+)    /s\.php\?id=$1
RewriteRule /(\d+)/index\.html   /s\.php\?id=$1


http://www.jvvhb.info/123/3.html
URL重写
http://www.jvvhb.info/s.php?k=123&x=3

前面的目录重写已经成功了,大家可以参考下


------解决方案--------------------
RewriteRule ^(.*)/(\d+)/(\d+)\.html$ $1/s\.php\?k=$2&x=$3 [L]
照葫化瓢呗~