php破解防盗链

 1:设置所有图片src代理到自己的接口,如下:接受get请求的showpic接口

2:图片服务端转发

public function showpic(Request $request)
{
    $url = $request->get('url', false);
    if ($url){
        header('Content-type: image/jpeg');
        echo file_get_contents($url);
    }
}

 

你可能感兴趣的:(PHP)