|
<?php
|
|
|
|
class SController extends Controller
|
|
{
|
|
static function actionIndex()
|
|
{
|
|
$key = intval(x62::decode(App::getParam('key')));
|
|
$shortUrl = ShortUrl::model()->getByPK($key);
|
|
|
|
if($shortUrl->id) {
|
|
App::redirect($shortUrl->url);
|
|
} else {
|
|
App::error404();
|
|
}
|
|
}
|
|
}
|