ErrorPageController.class.php 373 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: zhonglei
 * Date: 17/4/18
 * Time: 14:31
 */
namespace Frontend\Controller\Index;

class ErrorPageController extends AbstractController
{
    /**
     * 错误页面
     * @author tangxingguo
     */
    public function Index()
    {
        redirectFront('/app/page/answer/error/error', ['status' => 'questionDelete']);
    }
}