我想将最后/
转换为?
以获取网址。
例如。 :/custom/2342546578
使用htaccess规则custom?2342546578
。
其中custom
是我的页面,最后一个字符串是客户识别的唯一ID。
如何使用htaccess规则进行重定向?
答案 0 :(得分:1)
您可以使用以下RewriteRule
在root/.htaccess
RewriteRule ^custom/([A-Za-z0-9]+)/?$ /custom?$1 [L]
这会将您的网址从/custom/123
重写为/custom?123
。