如何使用htaccess文件重写GET参数

时间:2018-09-18 08:18:47

标签: regex apache .htaccess url-rewriting

我想重写以下网址

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/进行测试。

0 个答案:

没有答案