来自另一个域的Laravel错误日志404

时间:2015-01-11 16:19:41

标签: php apache laravel-4 http-status-code-404

我不确定如何解释我在Laravel应用程序的日志中看到的内容。我已经设置了以下代码,以便记录导致404的所请求的URL:

App::missing(function($e){
        $url = Request::fullUrl();
        Log::warning("404 for URL: $url");
});

我的应用程序托管在域名example.com上,但在我的日志中,我看到一个条目说:

[2015-01-10 22:18:41] production.WARNING: 404 for URL: http://s1.bdstatic.com/r/www/cache/static/home/img/logos/nuomi_ade5465d.png [] []

我不明白为什么我可以看到不在我的域中的URL请求的日志条目。有谁知道如何解释这个?

0 个答案:

没有答案