dzzoffice/short.php
小胡 77979b6ed5
更新至V2.3.2版本,离线升级的用户需要执行升级程序 (#278)
* 优化百度编辑器,修复编辑器插入的图片不能预览问题

* 处理系统异常时登录无反应问题

* 更新至V2.3.1版本,离线升级的用户需要执行升级程序
2025-01-16 21:17:09 +08:00

27 lines
682 B
PHP

<?php
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
require './core/coreBase.php';
define('CURSCRIPT', 'dzz');
$dzz = C::app();
$dzz->init_session = false;
$dzz->init_setting=false;
$dzz->init_user=false;
$dzz->init_misc=false;
$dzz->init();
$sid=$_GET['sid'];
$short=C::t('shorturl')->fetch($sid);
if(!$short){
@header('HTTP/1.1 404 Not Found');
@header('Status: 404 Not Found');
exit('Access Denied');
}
C::t('shorturl')->addview($sid);
@header("Location: ". outputurl($short['url']));
exit();
?>