Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2つのフォルダーがあります。1つはindex.htmlがある名前付きテンプレートです。もう1つは、main.cssファイルがある場所でstaticという名前です。次のコードを使用してindex.htmlからcssファイルにアクセスしましたが、404エラーが発生しました。PythonでGoogleAppEngineを使用しています。
<link rel="stylesheet" href="../static/main.css" type="text/css">
これらのフォルダがアプリケーションルートにある場合は、次のようなURLを使用してみてください。
<link rel="stylesheet" href="/static/main.css" type="text/css">
フルパスを指定してみてください(例:C:\ xampp \ htdocs \ yourFolder \ static \ main.css)