Laravel路线有效,但返回404状态

时间:2016-03-24 10:00:50

标签: php xml laravel nginx http-status-code-404

我创建了一个带laravel的动态sitemap.xml路由,它返回一个xml响应。

路径适用于浏览器,但会返回 404状态

这是唯一返回404状态的路线

这些是标题

Cache-Control →no-cache
Connection →keep-alive
Content-Length →232
Content-Type →text/xml; charset=UTF-8
Date →Thu, 24 Mar 2016 09:44:35 GMT
Server →nginx/1.9.12

这是路线

Route::get('sitemap.xml', ['as' => 'sitemap.index', 'uses' => 'SitemapController@index']);

这是控制器响应

    $response = response()->view('sitemaps.index', [
        'last'    => $data,
        'modules' => $modules,
        'app'     => $app,
    ])->header('Content-Type', 'text/xml');

    $response->header('Content-Length',strlen($response->getOriginalContent()));

    return $response;

视图

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
@foreach($modules as $module)
    <sitemap>
        <loc>{{ url('sitemap-' . $module . '.xml') }}</loc>
        <lastmod>{{ $last[$module]['updated_at'] or date('Y').'-01-01'}}</lastmod>
    </sitemap>
@endforeach

谢谢。

1 个答案:

答案 0 :(得分:0)

这是一个Nginx问题。

我在配置文件中添加了此代码,现在可以正常运行:

location = /sitemap.xml {
    try_files $uri $uri/ /index.php?$query_string;
    access_log off;
    log_not_found off;
}

我从回复中删除了<?xml version="1.0" encoding="UTF-8"?>