mirror of
https://github.com/zyx0814/dzzoffice.git
synced 2025-04-04 22:33:37 +08:00
27 lines
682 B
PHP
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();
|
|
?>
|