我做了路线,但是apache服务器看不到该路线。 Laravel欢迎页面没有问题,但是当我尝试在视图中创建另一个文件夹时。 Apache无法看到该页面。找不到404弹出。
这是路线和控制器代码
Route::get('/pages', 'Pages@index');
和控制器
function index(){
return "test";
我的httpd也是我的文档根目录:/ var / www / html / laravel / public
模块目录: DirectoryIndex index.html index.php
我也需要更改其他内容吗?使这条路线通畅?
答案 0 :(得分:1)
在centos 7中,None
--to-> All
很好。
<Directory /var/www/html>
. . .
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None --> All
. . .
</Directory>