htaccess重写规则从普通url到php参数

时间:2013-10-30 22:04:08

标签: .htaccess mod-rewrite url-rewriting

我正在撞击这个,希望得到一些帮助。

我想让我的重写为任何VARIABLE

执行以下操作

http://x.com/info/VARIABLE

http://x.com/a/info/index.php?product=VARIABLE

感谢您的帮助!

1 个答案:

答案 0 :(得分:2)

这可以在/.htaccess文件中执行:

RewriteRule ^info/(.*)$ a/info/index.php?product=$1 [L]

正则表达式部分(。*)$捕获信息后面的所有字符串,并通过$ 1反向引用将其传递到目标,就像你的VARIABLE部分一样。