问题:服务器laravel路由404 Not Found

问题:服务器laravel路由404 Not Found —2020-2-8

1、问题

Not Found
The requested URL /XXX was not found on this server.

2、解决

找到/etc/httpd/conf/httpd.conf
以下是我更改前的

DocumentRoot "/var/www/html"
<Directory "/var/www">
    AllowOverride None
    Require all granted
</Directory>

以下是我更改后的

DocumentRoot "/var/www/cloud/public"
<Directory "/var/www/cloud/public">
    Allowoverride All
    Require all granted
</Directory>

确保DocumentRoot 指向的目录是laravel中public文件夹。

你可能感兴趣的:(问题(Bug))