如何从
更改查询https://www.example.com/page.php?foo=bar
到
https://www.example.com/page.php?foo=something
只使用htaccess?
我曾尝试过:
RewriteCond %{QUERY_STRING} foo\=bar$ [QSR]
RewriteRule page\.php\?foo\=bar$ page\.php\?foo\=baz [L,R=301]
不能正常工作,在在线htaccess测试中进行测试 - https://htaccess.mwl.be/
答案 0 :(得分:0)
您可以使用:
RewriteCond %{QUERY_STRING} foo=bar$
RewriteRule ^page\.php$ page.php?foo=baz [L,R=301]
因为查询字符串不是RewriteRule测试的一部分。