[提问]
请问Economy型主机是否能提供PDF文件下载
|
|
jackzhang1204
发表于 2011-11-27 14:12:50
|
显示全部楼层
回复 10# 的帖子
是的因为还支持了其它东西,下面是整个web.config的内容
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="wordpress" patternSyntax="Wildcard">
<match url="*" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
<staticContent>
<mimeMap fileExtension=".ogg" mimeType="video/ogg" />
<mimeMap fileExtension=".pdf" mimeType="application/pdf" />
</staticContent>
</system.webServer>
</configuration>
加上<mimeMap fileExtension=".pdf" mimeType="application/pdf" />这条后网站显示不正常。 |
|
|
|
|
|
|
|
|
|
|
lwbo1987
发表于 2011-11-27 14:22:39
|
显示全部楼层
回复 11# 的帖子
|
那肯能个是代码有问题,你尝试将这段代码写到<system.webServer> </system.webServer>外面看看 |
|
|
|
|
|
|
|
|