我有一個外部反向鏈接,這是不正確地鏈接到我的網站。htaccess重定向編碼的網址到主頁
它們將/%E2%80%8E添加到鏈接的末尾,因此它以http://mywebsite.com/%E2%80%8E進入。
我想使用htaccess將這些人重定向到我的主頁。
這是我目前有:
#This version does not work for some reason
RewriteRule %E2%80%8E https://mysite.com [B,R,L]
RewriteCond %{QUERY_STRING} %E2%80%8E
RewriteRule .? https://mysite.com [B,R,L]
# This version works if I type in the DECODED version of the string
RewriteRule ‎ https://mysite.com [R,L]
RewriteCond %{QUERY_STRING} ‎
RewriteRule .? https://mysite.com [R,L]
感謝
完美而簡單,歡呼! – Josh