aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/cors/errors
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-07 00:29:50 +0900
committerpotappo <potappo@gmail.com>2021-09-18 22:24:37 +0900
commit4a573bbdd0e5945998a37162d1535245d4e20416 (patch)
tree882db0cd8f37c947955b460700d4d331f6bb95bb /files/ja/web/http/cors/errors
parente675bc16532dd880010aa9c2de2f9ed2f2bb3430 (diff)
downloadtranslated-content-4a573bbdd0e5945998a37162d1535245d4e20416.tar.gz
translated-content-4a573bbdd0e5945998a37162d1535245d4e20416.tar.bz2
translated-content-4a573bbdd0e5945998a37162d1535245d4e20416.zip
Web/a-h以下の文書内のリンクURLを正規化
- /en-US へのリンクを /ja へのリンクに修正 - /ja が付いていないものに /ja を付加 - MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正
Diffstat (limited to 'files/ja/web/http/cors/errors')
-rw-r--r--files/ja/web/http/cors/errors/corsmethodnotfound/index.html2
-rw-r--r--files/ja/web/http/cors/errors/corsmissingallowcredentials/index.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/http/cors/errors/corsmethodnotfound/index.html b/files/ja/web/http/cors/errors/corsmethodnotfound/index.html
index 3f391edcd9..bb624fd067 100644
--- a/files/ja/web/http/cors/errors/corsmethodnotfound/index.html
+++ b/files/ja/web/http/cors/errors/corsmethodnotfound/index.html
@@ -33,7 +33,7 @@ translation_of: Web/HTTP/CORS/Errors/CORSMethodNotFound
<p>コードからサービスにアクセスするときは、許可された HTTP メソッドのみを使用するように確認してください。</p>
-<p><strong>メモ:</strong> サーバーが <code>Access-Control-Allow-methods</code> ヘッダーに理解できない又は未定義のメソッド名を含めた場合、別なエラー <code><a href="/en-US/docs/Web/HTTP/CORS/Errors/CORSInvalidAllowMethod">Reason: invalid token ‘xyz' in CORS header ‘Access-Control-Allow-Methods’</a></code> が発生します。</p>
+<p><strong>メモ:</strong> サーバーが <code>Access-Control-Allow-methods</code> ヘッダーに理解できない又は未定義のメソッド名を含めた場合、別なエラー <code><a href="/ja/docs/Web/HTTP/CORS/Errors/CORSInvalidAllowMethod">Reason: invalid token ‘xyz' in CORS header ‘Access-Control-Allow-Methods’</a></code> が発生します。</p>
<h2 id="See_also" name="See_also">関連情報</h2>
diff --git a/files/ja/web/http/cors/errors/corsmissingallowcredentials/index.html b/files/ja/web/http/cors/errors/corsmissingallowcredentials/index.html
index 6c1de312ae..a799f9093a 100644
--- a/files/ja/web/http/cors/errors/corsmissingallowcredentials/index.html
+++ b/files/ja/web/http/cors/errors/corsmissingallowcredentials/index.html
@@ -30,7 +30,7 @@ translation_of: Web/HTTP/CORS/Errors/CORSMIssingAllowCredentials
<ul>
<li>リクエストが {{domxref("XMLHttpRequest")}} を用いて発行されている場合は、 {{domxref("XMLHttpRequest.withCredentials", "withCredentials")}} に <code>true</code> を設定しないよう確認してください。</li>
<li><a href="/ja/docs/Web/API/Server-sent_events">Server-sent event</a> を使用している場合は、 {{domxref("EventSource.withCredentials")}} が <code>false</code> (既定値) であることを確認してください。</li>
- <li><a href="/en-US/docs/Web/API/Fetch_API">Fetch API</a> を使用している場合は、 {{domxref("Request.credentials")}} が <code>"omit"</code> であることを確認してください。</li>
+ <li><a href="/ja/docs/Web/API/Fetch_API">Fetch API</a> を使用している場合は、 {{domxref("Request.credentials")}} が <code>"omit"</code> であることを確認してください。</li>
</ul>
<p>サーバーの構成を変更してこのエラーを除去するには、サーバーの構成で <code>Access-Control-Allow-Credentials</code> ヘッダーの値に <code>true</code> を設定するよう調整してください。</p>