问答详情
源自:3-1 路由

编写新的路由全部访问报404错误,只有根路径正确

//能访问
Route::get('/', function () {
    return view('welcome');
});

//不能访问,404错误
Route::get('first', function(){
    return 'hello, world';
});


提问者:qq_Ordinare_04010752 2018-07-19 10:49

个回答

  • 慕UI4579141
    2020-08-17 14:36:15

    已解决 可以参考这两个

    https://blog.csdn.net/weixin_33692284/article/details/91957482

    https://blog.csdn.net/haibo0668/article/details/105229541

  • 街长
    2019-05-11 09:33:12

    框架重定向问题,在项目的框架配置文件 中加https://img2.mukewang.com/5cd625ff0001345003780130.jpg

  • 慕码人1327695
    2018-09-12 20:57:54

    我之前也遇到这个问题,折腾了几个小时环境和配置,都不行。最后装了一个Homestead解决。

  • OrAndNot
    2018-07-19 11:53:29

    php开启phpopenssl
    在apache conf开启rewrite模块
    (#LoadModule rewrite_module modules/mod_rewrite.so)
    在conf文件中找到directory 把AllowOverride None 改成 AllowOverride All
    <Directory>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    重新启动apache