我已经在 000webhosthost 中免费部署了我的 Django 网站,但它不工作

I have deployed my Django website in 000webhosthost for free but its not working

我已经在 000webhosthost 中免费部署了我的 Django 1.7 网站,但它无法正常工作。它已部署且没有错误,但无法正常工作。这是 My website on 000webhost 的 link,它的快照是-


在这里我发现问题是静态文件不包含在内并且包含功能不起作用。

My index.html program is-

{% load staticfiles %}
<link rel="stylesheet" type="text/css" href="{% static 'webpage/style.css' %}" />
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<div>
{% include "webpage/header.html" %} 
</div>

  
<div class="row">
  <div class="col-md-8">
    <div col-md-12 .col-md-offset-3>
     <h3>Key Achievements</h3>
     <ul>
      <li>Ph.D. in Computer Science</li>
      <li> Incharge Principal S.P. College</li>
      <li>Guest Lectures for Research and finishing schools  </li>
      <li>Researcher in image processing domain of computer science </li>
      <li>Head of MCA Department at P.R.Patil Group of Educational Institutes, Amrvavati</li>
   </ul>
    </div>

   </div>
    <div class="col-md-4" style="">
<img src="{% static 'webpage/images/chitraMam.jpg' %}" alt="My image" width="60%"  height="10% "/>
         </div>
 </div>

<hr> 
 <div class="row">
    <div class="col-md-4">
    <h5 align="center"><strong>Teaching</strong></h6>
         <ul><small>
      <li>Having more than 2-decades of academic experience including :teaching (PG,PG) ,research and administration.</li>
      <li>Served as a Professor in computer department of  symbiosis International University, Pune-2009-2010 </li>
      <li>Sr  Lecturer at  in MCA department from 2008-2009 HVMPM, Amravati., </li>
      <li>Lecturer   from 2003 at HVMPM, Amravati.</li>
   </ul>

    </div>
    <div class="col-md-4">
     <h5 align="center"><strong>Research</strong></h6>
         <ul>
      <li>Registered supervisor for Ph.D in Computer Science at Amravati university, Nagpur University, Symbiosis International University.</li>
      <li>6 phd students working and 03 awarded phd degree.</li>
   </ul>
    </div>
    <div class="col-md-4">
    <h5 align="center"><strong>Invited Talks</strong></h6>
         <ul>
      <li>Ph.D. in Computer Science</li>
      <li> Incharge Principal S.P. College</li>
      <li>Guest Lectures for Research and finishing schools  </li>
      <li>Researcher in image processing domain of computer science </li>
      <li>Head of MCA Department at P.R.Patil Group of Educational Institutes, Amrvavati</li>
   </ul>
    </div>
 </div>


</div>
</div>   <!--Main div -->
</div>

任何人都请帮助。

根据 http://www.000webhost.com/ 上的计划比较,他们的免费计划不包括 python 支持。您提供的屏幕截图证实了这一假设,因为 django 模板作为普通 html 文件提供。

如果您正在寻找 django 站点的免费托管,请查看 https://www.heroku.com/。他们的免费计划相当有限,但允许您托管一个简单的 django 页面。