为什么Apache(centos 7)看不到我的路线?

时间:2018-09-24 06:47:02

标签: laravel apache routes centos

我做了路线,但是apache服务器看不到该路线。 Laravel欢迎页面没有问题,但是当我尝试在视图中创建另一个文件夹时。 Apache无法看到该页面。找不到404弹出。

这是路线和控制器代码

Route::get('/pages', 'Pages@index');

和控制器

    function index(){
    return "test";

我的httpd也是我的文档根目录:/ var / www / html / laravel / public

模块目录: DirectoryIndex index.html index.php

我也需要更改其他内容吗?使这条路线通畅?

1 个答案:

答案 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>