1

このような html.file と、次のようなヘブライ語名のローカル ファイルがあります: אב.html

それへのパーセントでエンコードされたリンクは、すべてのブラウザーで正常に機能しますが、IE では機能しません。IEはUTF-8ではなくISOに変換しているようです。

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/></head>
<body>
<p>
UTF-8 file name in URL
File name is in hebrew 
<P>
&#1488;&#1489.html
<P>
Percent encoded does not work in IE / works in all other browsers:
<P>
%D7%90%D7%91.html
<P>
<a href="%D7%90%D7%91.html">&#1488;&#1489;
</a>
<P>
Ampersand encoded works in all browsers
<P>
'& #1488'; & #1489 ; ' .html 
<P>
<a href="&#1488;&#1489;.html">&#1488;&#1489;
</a>
</body></html>
4

0 に答える 0