如何将https://xyz.com/ceoblog/?tag=real-estate-assistant&paged=2重定向到https://xyz.com/ceoblog/
我已经尝试了所有可能的解决方案,但它没有重定向。
我该如何实现这个目标?
提前致谢
答案 0 :(得分:1)
此htaccess规则检查ceoblog上的任何查询字符串并重定向到ceoblog /
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^ceoblog(/?)$ /ceoblog/? [R=301,L]
然而,查看查询字符串会阻止分页和标记过滤器正常工作 - 即您只会遇到一页。
答案 1 :(得分:0)
有几种可能的解决方案
if(count($_GET)) {
$mydata = $_GET;
// do stuff with $data, like store it or something
header("location: /ceoblog");
} else {
// do other stuff
}