本帖最后由 堡塔运维小林 于 2023-3-16 15:24 编辑
hi
各位大佬好,做的页面在微信内打开,需求目的是用户在页面下载视频,目前遇到的问题是点击下载就是在线播放。
备注:服务器是阿里云,用的是宝塔windows。
目前宝塔的配置文件是这样的:
location/{
if(!-e $request_filename){
rewrite(.*)$ /index.php?s=$1 last; break;}
改成下面这样,服务器就不能访问,报错-1004,求应该怎么改代码,谢谢谢谢
location /{
if ($request filename ~* ^.*?\.(img|mp4)$){
rewrite(.*)$ /index.php?s=$1 last; break;
add header Content-Disposition attachment:
add header Content-Type application/octet-stream;
}
|
|