configure mime types windows azure websites php app(配置 mime 类型 windows azure 网站 php 应用程序)
问题描述
我正在使用 Windows Azure 网站来托管一个 php 应用程序.我的应用程序使用 webfonts(css3 功能),我需要配置扩展名,例如 .eot;.woff 以避免 404 错误.我知道可以在 .net 应用程序中使用 web.config 设置这种配置,但是对于 php 站点,我该怎么办?不幸的是,网站没有 RDP.有没有其他方法可以解决这个问题?
I'm using Windows Azure Websites to host a php app. My app uses webfonts (css3 feature) and I need to configure extensions such as .eot; .woff to avoid 404 errors. I know that it's possible to set this kind of configs using web.config in a .net app, but for a php site, what can I do? Unfortunately there's no RDP for websites. Is there another way to solve this?
推荐答案
我可以通过将 web.config 添加到根文件夹来解决这个问题.
I could solve this just adding a web.config to root folder.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
<remove fileExtension=".ttf" />
<mimeMap fileExtension=".ttf" mimeType="application/octet-stream" />
<remove fileExtension=".svg" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
</staticContent>
</system.webServer>
</configuration>
这篇关于配置 mime 类型 windows azure 网站 php 应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:配置 mime 类型 windows azure 网站 php 应用程序
- Laravel 仓库 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01