aif 声音文件,支持压缩,可以使用WindowsMediaPlayer和QuickTimePlayer播放
AIF 音频文件,使用WindowsMediaPlayer播放
AIFC 音频文件,使用WindowsMediaPlayer播放
AIFF 音频文件,使用WindowsMediaPlayer播放
asf 微软的媒体播放器支持的视频流,可以使用WindowsMediaPlayer播放
asp 微软的视频流文件,可以使用WindowsMediaPlayer打开
asx WindowsMedia媒体文件的快捷方式
try_files是nginx中http_core核心模块所带的指令,主要是能替代一些rewrite的指令,提高解析效率。官网的文档为 http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files
try_files的语法规则:
格式1:try_files file ... uri 格式2:try_files file ... =code
可应用的上下文:server,location段。
try_files语法解释:
http://localhost:8090/test?a=1 的uri是 /test 。
http://localhost:8090/test/asas?a=1 的uri是 /test/asas
http://localhost:8090/test/asas 的uri是 /test/asas
http://localhost:8090/38/index.txt 的uri是 /38/index.txt
try_files 是获取文件:
请求地址: http://localhost:8083/38/asas?a=1
因为location的规则是 location ~* ^/(273|38)/([^/]*)/ ,找不到对应的location。
解决方案:修改规则: location ~* ^/(273|38)/([^/]*)
重新定位不到的话,会返回404异常。
以上出现死循环,故nginx返回500。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)