0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Azure AppService のカスタムエラーページで日本語を表示する方法

Posted at

カスタムエラーページについてはこちらの記事が詳しいです。

さて、2024年2月現在も、全角文字を含むHTMLファイルがアップロードできないようです。

<!DOCTYPE html>
<html lang="ja">
<head>
	<meta charset="utf-8" />
</head>
<body>
    <h1>システムエラー</h1>
    <p>アクセスできません。</p>
</body>
</html>

image.png

が、全角文字を実体参照に置き換えると、アップロードできるようになります。

<!DOCTYPE html>
<html lang="ja">
<head>
	<meta charset="utf-8" />
</head>
<body>
    <h1>&#12471;&#12473;&#12486;&#12512;&#12456;&#12521;&#12540;</h1>
    <p>&#12450;&#12463;&#12475;&#12473;&#12391;&#12365;&#12414;&#12379;&#12435;&#12290;</p>
</body>
</html>

image.png

日本語での表示もできました。

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?