I want to reference style.css in index.html. Here"s the directory structure:
when I use relative paths, styles can be loaded:
<link rel="stylesheet" href="../static/css/style.css" />
failed to use absolute path:
<link rel="stylesheet" href="/static/css/style.css" />
or either / module/static...
or / python/module/static...
cannot be loaded.
excuse me, is this the social reason?
how to correctly fill in the absolute path in link?