Home  >  Article  >  Backend Development  >  求一段rewrite规约

求一段rewrite规约

WBOY
WBOYOriginal
2016-06-13 10:51:56762browse

求一段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]
照葫化瓢呗~

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn