我厌倦了将Laravel应用推向托管。 如此,我更改了.env for DB中的所有内容,现在出现此错误:
ErrorException (E_ERROR)
View [layout.layout] not found. (View: /home/ramchca/ftp/resources/views/Pages/index.blade.php)
Previous exceptions
View [layout.layout] not found. (0)
我的问题是。为什么它不起作用。在localhost上一切正常。
答案 0 :(得分:0)
Okey,我知道我做错了。 我的问题是在这里小写
@extends('layout.layout')
文件夹为Layout
。
答案 1 :(得分:-1)
在您的laravel目录中添加.htaccess。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
我不确定,但是您可以尝试。