>백엔드 개발 >PHP 튜토리얼 >laravel5.2 blog页面跳转404错误

laravel5.2 blog页面跳转404错误

WBOY
WBOY원래의
2016-06-06 20:06:161401검색

项目为laravel网站上的项目:http://laravelacademy.org/post/2265.html

当部署完成后,用浏览器打开首页出现 /blog not found 的404错误。

routes.php代码如下:

<code><?php Route::get('/', function () {
        return redirect('/blog');
    });

    Route::get('blog', 'BlogController@index');
    Route::get('blog/{slug}', 'BlogController@showPost');
?></code>

尝试操作:

  1. 直接取消redirect重定向,修改成:

<code><?php Route::get('/', 'BlogController@index');
    Route::get('/{slug}', 'BlogController@showPost');
?></code>

并修改视图中的跳转链接,将 /blog/{slug} 修改成 /{slug}
结果,主页是出来了,但是二级页面还是出不来。提示404 notfound!

源码链接:https://github.com/digjack/Blog

回复内容:

项目为laravel网站上的项目:http://laravelacademy.org/post/2265.html

当部署完成后,用浏览器打开首页出现 /blog not found 的404错误。

routes.php代码如下:

<code><?php Route::get('/', function () {
        return redirect('/blog');
    });

    Route::get('blog', 'BlogController@index');
    Route::get('blog/{slug}', 'BlogController@showPost');
?></code>

尝试操作:

  1. 直接取消redirect重定向,修改成:

<code><?php Route::get('/', 'BlogController@index');
    Route::get('/{slug}', 'BlogController@showPost');
?></code>

并修改视图中的跳转链接,将 /blog/{slug} 修改成 /{slug}
结果,主页是出来了,但是二级页面还是出不来。提示404 notfound!

源码链接:https://github.com/digjack/Blog

在 Nginx,在你的网站配置中增加下面的配置,可以使用「优雅链接」

<code class="php">location / {
    try_files $uri $uri/ /index.php?$query_string;
}</code>

或者/index.php/blog

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.