プロジェクトでDocCを使用することで得られる潜在的な価値を確認するために、私が働いている会社のPOCを実行しようとしています。
開発の前に、WWDC 2021 の DocC に関連する 4 つのビデオを見て、Apple 開発者サイトにアクセスし、いくつかのページやブログを読んで、情報や考えを集めました。
私の開発では、作業をサーバーにプッシュする前に、開発マシンで MAMP の使用を開始しました。
これまでのところ、Web サイトでドキュメントアーカイブをホストするために必要なすべての手順を実行したと思います。しかし、index.html が空白のように見えるので、何か見落としているのではないでしょうか。
私が使用したコードは次のとおりです。
index.html (メイン)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DocC POC</title>
</head>
<body>
<h2>Welcome</h2>
<button onclick="location.href = 'documentation/index.html';" id="myButton" class="float-left submit-button" >Read data framwework documentation</button>
</body>
</html>
.htaccess
# Enable custom routing.
RewriteEngine On
# Route documentation and tutorial pages.
RewriteRule ^(documentation|tutorials)\/.*$ Data.doccarchive/index.html [L]
# Route files and data for the documentation archive.
#
# If the file path doesn't exist in the website's root ...
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# ... route the request to that file path with the documentation archive.
RewriteRule .* Data.doccarchive/$0 [L]
ファイル構造
ドキュメントアーカイブが空でないことを証明する画像
空白ページの画像
何か案は??