|
修改 /plus/download.php 文件 查找 <?php 在它上面加入 在它下面加入 require("encode.inc"); 查找
else if($open==1){
$link = base64_decode($link);
echo "";
exit();
替换为
else if($open==1){
$link = base64_decode($link);
$Url = ("http://www.jb51.net/url".$link);
$thunderUrl = ThunderEncode($Url);
echo "";
exit();
}
把 encode.inc 文件 放到 plus 目录 登陆dedecms后台 系统设置 - 软件频道设置 把 附件下载方式 修改为 链接到跳转页面.
|