1
ytymf 2020-06-16 16:24:14 +08:00
我当时配置的是 django,感觉基本上没遇到什么困难啊。。。。。除了 windows 上要注意下目录的权限问题。
基本上就是按照这篇文章的方法配置的静态资源,详见第七章 https://www.cnblogs.com/djangocn/p/10227006.html |
3
j0shfan OP @ytymf 可以了,老哥,在我自己电脑上配成了,多谢!
总结一下就是在 applicationhost.config 下,自己某个站点的配置中添加一个 application 的设置 <application path="/try-this"> <virtualDirectory path="/" physicalPath="C:\Users\User1\Documents\My Web Sites\WebSite1\myfiles" /> </application> 然后在这个文件夹下 C:\Users\User1\Documents\My Web Sites\WebSite1\myfiles 下添加 web.config,期间我遇到了 404.3error,因为我的文件夹中有个.webp 的文件,该拓展名和对应的 mime type 在的 applicationhost.config 默认设置中没有,下面是加上 mimemap 配置成功的 web.config <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <!-- this configuration overrides the FastCGI handler to let IIS serve the static files --> <handlers> <clear/> <add name="StaticFile" path="*" verb="*" modules="StaticFileModule" resourceType="File" requireAccess="Read" /> </handlers> <staticContent> <mimeMap fileExtension=".webp" mimeType="image/webp" /> </staticContent> </system.webServer> </configuration> |
4
ytymf 2020-06-19 09:39:47 +08:00
@j0shfan 不客气,跟你也学到了。我没遇到困难的原因是没有特殊类型的文件,都是些常见的 js css 之类的,所以也不需要添加 mime
|