我尝试从此链接中删除/重定向查询字符串:
要获取此链接:http ://www.myDomain.com/detail/link-526.html
任何帮助将不胜感激,谢谢。
Try adding this in the htaccess file in your document root:
RewriteEngine On
RewriteCond %{QUERY_STRING} (^|&)fb_action_ids=
RewriteRule ^/?detail/link- %{REQUEST_URI}? [L,R=301]
Note that this redirects the browser if there's facebook query string stuff without any of it, but if the content of your page keeps adding it, the redirecting might loop.