webfactionでdjangoを実行していますが、cssファイルの実装に問題があります。私が持っているサンプルhtmlファイルは次のとおりです。
<html>
<head>
</head>
<h1>
Poll
</h1>
<body>
<link rel="stylesheet" type="text/css" href="/home/shop/webapps/django/shop/static/index.css" />
<form name="Search bar" action="/search/results/p=1/" method="post">
{% csrf_token %}
UserId: <input type="text" name="UserId" /><br><br>
<input type="text" name="Keyword" />
<input type="submit" value="Search" />
</form>
</body>
</html>
まったく同じファイルがローカルサーバーで正常に実行されますが、webfactionでは機能しません。誰かが何がうまくいかないのか考えているのだろうかと思っていました。
ありがとう!