Options +FollowSymLinks
RewriteEngine On
RewriteRule ^products/([a-zA-Z]+)/([0-9]+)/$ index.php?product=$1&price=$2
这段代码使
http://www.example.com/products/computer/1000
进入
http://www.example.com/index.php?product=computer&price=1000
.
是否可以制作
http://www.example.com/scriptName/arg1/val1/arg2/val2/arg3/val3
进入
http://www.example.com/scriptName.php?arg1=val1&arg2=val2&arg3=val3?
用户应该能够提供无限数量的参数。这种方式可以有/index.php?page=forum&subforum=subforum"e1=postNo1"e2=postNo43
等等重写/index/page/forum/subforum/subforum/quote1/postNo1/quote2/postNo43
.htaccess
代码看起来如何?