//能访问 Route::get('/', function () { return view('welcome'); }); //不能访问,404错误 Route::get('first', function(){ return 'hello, world'; });
已解决 可以参考这两个
https://blog.csdn.net/weixin_33692284/article/details/91957482
框架重定向问题,在项目的框架配置文件 中加
我之前也遇到这个问题,折腾了几个小时环境和配置,都不行。最后装了一个Homestead解决。
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