使用htaccess规则重定向到包含参数的特定页面

时间:2014-12-10 05:41:08

标签: .htaccess redirect url-redirection

我有一个网址: v1/club/club-name/12v1/club/club-name/13

我希望它重定向到: v1/features.php?id=12v1/features.php?id=13

任何人都可以告诉我如何使用.htaccess

感谢。

1 个答案:

答案 0 :(得分:0)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此代码:

RewriteEngine On
RewriteBase /

RewriteRule ^v1/club/[^/]+/(\d+)/?$ v1/features.php?id=$1 [L,NC,QSA]