.htaccess add?amp如果url包含?amp

时间:2018-01-26 21:16:21

标签: .htaccess amp-html

我想添加查询字符串"?amp"到页面的所有网址,如果该网页有"?amp"在网址中。

E.G。如果我在example.com?amp中,我有这个网址链接

  • home.html的
  • contact.html
  • forum.html

我希望所有网址都是

  • home.html的?安培
  • contact.html?安培
  • forum.html?安培

我怎么能在.htaccess做什么?我试试这段代码:

RewriteEngine on

RewriteCond %{QUERY_STRING} (^|&)?amp(&|$) [NC]
RewriteRule ^ %{REQUEST_URI}?amp [L,QSA,R]

但是不能工作。有人能帮助我吗?

0 个答案:

没有答案