Mod_wsgi_express:图像未在浏览器中加载

时间:2016-06-21 19:42:12

标签: python-2.7 mod-wsgi

我安装了mod_wsgi-express(进入python),一切正常。 但是,当我试图在浏览器上发送一些图片时,它没有运行,Firebug说 - Failed to load the given URL

以下是我在网站上提供的wsgi配置:

    <VirtualHost *:80>
       ServerName wsgihost
       DocumentRoot /var/www/html/documents

       Alias /images/ /var/www/html/documents/images/

      <Directory /var/www/html/documents/images>
             Order allow,deny
             Allow from all
      </Directory>

      WSGIScriptAlias / /var/www/html/scripts/first.wsgi  

      <Directory /var/www/html/scripts>
             Order allow,deny
             Allow from all
      </Directory>    
  </VirtualHost>  

这是我在浏览器上输出的简单HTML:

      <html>
         <head>
           <body>
                <img src="/images/pic1.jpg"> 
           </body>
         </head>
      </html

我在那里犯了一些愚蠢的错误,但无法找到它,有人可以帮助我,谢谢。

0 个答案:

没有答案