标签: .htaccess mod-rewrite redirect
我尝试从此链接中删除/重定向查询字符串:
http://www.myDomain.com/detail/link-526.html?fb_action_ids=10151931158951677&fb_action_types=og.likes&fb_source=aggregation&fb_aggregation_id=288381481237582
要获取此链接:http://www.myDomain.com/detail/link-526.html
非常感谢任何帮助,谢谢。
答案 0 :(得分:0)
尝试在文档根目录中的htaccess文件中添加它:
RewriteEngine On RewriteCond %{QUERY_STRING} (^|&)fb_action_ids= RewriteRule ^/?detail/link- %{REQUEST_URI}? [L,R=301]
请注意,如果没有任何内容的Facebook查询字符串,这会重定向浏览器,但如果页面内容不断添加,则重定向可能会循环。