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 的模板。另一个名为 static 我的 main.css 文件所在的位置。我使用以下代码从 index.html 访问我的 css 文件,但出现 404 错误。我在 python 中使用谷歌应用引擎。
<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