对不起我的英语。我制作了一个品牌目录网站。在访问品牌页面之前,我使用这样的请求:
mydomain.com/fiche.php?id=115
其中 id 是我的目录中品牌的 id
我更改了品牌页面的结构,现在使用此请求:
mydomain.com/annuaire.php?type=fiche&id_marq=115
id
变成了哪里id_marq
我尝试使用这样的重写规则:
RewriteRule ^fiche.php$ http://www.annuaire-sites-officiels.com/annuaire.php?detail=fiche&id_marq=$1 [L,QSA,R=301]
将旧链接重定向到新页面,但结果不传递 id_marq 值,并且 url 是:
http://www.annuaire-sites-officiels.com/annuaire.php?detail=fiche&id_marq=&id=115
&id=也是。
我究竟做错了什么?