我需要像
那样重定向网址http://myhost.com/dosomething/foo,bar
到
http://myhost.com/dosomething.php?a=foo&b=bar
我试过
RewriteRule ^dosomething/(\w+)\W(\w+)$ dosomething.php?a=$1&b=$2 [L,NC]
但问号后面没有任何内容。看来我需要添加一些 RewriteCond%{QUERY_STRING}但是什么?我能找到的所有示例都是原始请求中存在查询字符串参数的示例,而不是重写的参数。你能告诉我这里需要什么样的RewriteCond / RewriteRule。