Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用头撞这个,希望能得到一些帮助。
我想让我的重写为任何变量执行以下操作
http://x.com/info/VARIABLE
至
http://x.com/a/info/index.php?product=VARIABLE
谢谢你的帮助!
这可以做到,在 /.htaccess 文件中:
RewriteRule ^info/(.*)$ a/info/index.php?product=$1 [L]
正则表达式部分 (.*)$ 捕获 info/ 之后的所有字符串,并通过 $1 反向引用将其传递到目的地,就像您的 VARIABLE 部分一样。