我想重写以下网址
www.example.com/the-page.php?id=39574 至 www.example.com/The-Page?page_ref=39574
我已经尝试了以下方法(以及一些变体),但是无法匹配并重写。
RewriteEngine on
Options +FollowSymLinks
RewriteRule ^the-page.php?id=(d+) https://www.example.com/The-Page?page_ref=$1 [R=302,QSA,L,NC]
注意。我正在使用https://htaccess.madewithlove.be/进行测试。