我有一个网址:
v1/club/club-name/12
和v1/club/club-name/13
我希望它重定向到:
v1/features.php?id=12
和v1/features.php?id=13
任何人都可以告诉我如何使用.htaccess
?
感谢。
答案 0 :(得分:0)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteBase /
RewriteRule ^v1/club/[^/]+/(\d+)/?$ v1/features.php?id=$1 [L,NC,QSA]