qq_Ordinare_04010752
2018-07-19 10:49
//能访问
Route::get('/', function () {
return view('welcome');
});
//不能访问,404错误
Route::get('first', function(){
return 'hello, world';
});
框架重定向问题,在项目的框架配置文件 中加
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
轻松学会Laravel-基础篇
64318 学习 · 298 问题
相似问题