htaccess规则将url从url参数重定向到查询字符串

时间:2018-04-03 04:47:49

标签: .htaccess

我想将最后/转换为?以获取网址。

例如。 :/custom/2342546578使用htaccess规则custom?2342546578

其中custom是我的页面,最后一个字符串是客户识别的唯一ID。

如何使用htaccess规则进行重定向?

1 个答案:

答案 0 :(得分:1)

您可以使用以下RewriteRule 在root/.htaccess

RewriteRule ^custom/([A-Za-z0-9]+)/?$ /custom?$1 [L]

这会将您的网址从/custom/123重写为/custom?123