我需要像这样重写 URL
www.url.com?host_interface=220?222?770
进入这个(这是用户应该看到的)
www.url.com/host_interface-usb,firewire,pcie.html
对于这个例子,我需要替换这些参数:
220 = usb
222 = firewire
770 = pcie
为了使上面的 url 更易读,我将“%2C”换成了“?”
? = %2C
所以,它实际上看起来像这样
220%2C222%2C770
我也需要翻译这个吗?
除了参数
?host_interface=
需要重写为
host_interface-
它也需要结局
.html
所以最后我想放置几个参数,比如
xyz = abx
在 htaccess 中,因此所有参数都将被重写。