码迷,mamicode.com
首页 > Web开发 > 详细

Azure Web应用中设置静态虚拟目录的方法(比如部署Django需要用到)

时间:2018-02-05 20:04:34      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:span   doc   UI   1.0   azure   一个   应用   serve   class   

一、WEB应用中设置虚拟目录

二、在虚拟目录下放一个文件web.config,内容如下:

  

<?xml version="1.0"?>  
<configuration>  
    <system.webServer>
        <handlers>
           <clear />
            <add 
                name="StaticFile"
                path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" 
                resourceType="Either" 
                requireAccess="Read" />
        </handlers>
    </system.webServer>
</configuration>  

 

Azure Web应用中设置静态虚拟目录的方法(比如部署Django需要用到)

标签:span   doc   UI   1.0   azure   一个   应用   serve   class   

原文地址:https://www.cnblogs.com/songxingzhu/p/8418860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!