0

リダイレクトしたい:

http://www.example.com/example-folder/%E2%80%8Bvirginia.html

の中へ:

http://www.example.com/example-folder/virginia.html

したがって、この部分のみを削除します: 最初の URL から %E2%80%8B


ちなみに最初のリンクをfirefoxに貼り付けても文字は変わらない。しかし、クロムでは、削除したい文字が四角い文字になります。

前もって感謝します!

4

1 に答える 1

1

mslina2002 のおかげで、別のサイトで見つかりました。

解決策を探している人は、私が前に投稿したスレッドをチェックするか、これをあなたのガイドにしてください(mslina2002から)

# for url like www.example.com/my-file-name/
# bad backlink site is doing this:
# string %E2%80%8B is randomly added to slug url
# fix will redirect back to www.example.com/my-file-name/
#
RewriteEngine on
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)\%E2%80%8B(.*)\ HTTP/ [NC]
RewriteRule ^.*$ http://www.example.com/%1 [R=301,L] 

魅力のように機能します。

問題は恐ろしい「ゼロ幅スペース」または

于 2013-02-01T08:57:13.523 に答える