Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 WordPress 网站,需要根据查询字符串重定向一些 URL。
链接是/?product_brand=brandname
/?product_brand=brandname
我需要将它们全部重定向到/?product_bisbrand=brandname
/?product_bisbrand=brandname
有人可以指出我正确的方向吗?
尝试将其放在文档根目录中的 htaccess 文件中的适当位置:
RewriteEngine On RewriteCond %{QUERY_STRING} (.*)product_brand=([^&]+)&?(.*) RewriteRule ^(.*)$ /$1?%1product_bisbrand=%2&%3 [R=301,L]