在我的直播主机中没有呈现403错误页面?

时间:2017-04-28 20:12:59

标签: php laravel-5 cpanel

我正在使用laravel 5.3,我的显示错误的渲染功能是:

public function render($request, Exception $e)
    {
        if($this->isHttpException($e)){
            if (view()->exists('errors.'.$e->getStatusCode()))
            {
                return response()->view('errors.'.$e->getStatusCode(), [], $e->getStatusCode());
            }

        }
        return parent::render($request, $e);
    }

我在错误文件夹中有403,404和503错误页面。

404页面工作...所以如果我进入一个页面不在我的网站403刀片返回....但当我尝试访问一些文件夹...我得到默认的cpanel禁止页面.. ...所以如何显示403错误的错误页面。 谢谢

0 个答案:

没有答案