标签: apache httpserver
我是新手。我想要一个重写规则,用于转换表单上的URL:
http://hostname:port/abc/ def / ghi
http://hostname:port/abc/ XYZ / ghi
abc是固定前缀。 ghi是被回引用的查询字符串。
答案 0 :(得分:0)
类似这样的东西:
RewriteRule ^/abc/def(.*) /abc/XYZ$1 [QSA]
希望有帮助