Laravel 生产环境中的应用 运行 页面为空白

Laravel page is blank in the app running on production environment

当我访问 URL alertweb.com.br/login 时,我可以在开发环境中看到生产环境中的空白页面。工作正常...我不知道...有什么建议吗?

我的路线

Route::get('/', 'WebSite\IndexController@index');

Route::get('/home', 'WebSite\IndexController@index');

Route::get('/login', 'Auth\LoginController@showLoginForm')->name('login');
Route::post('/login', 'Auth\LoginController@login');

控制器

 public function showLoginForm()
{   
    if(!\Auth::check()){
        return view('login.index');
    }else{
        return view('manager.index');
    }

}

初始页面正在运行,数据库连接已建立。

清除您的配置并运行这些命令一条一条。

        php artisan clear-compiled
        php artisan cache:clear
        php artisan route:clear
        php artisan view:clear
        php artisan config:clear

希望对您有所帮助

我更改了我的 .htaccess,现在可以正常工作了。

<IfModule mod_rewrite.c>
RewriteBase /public
<IfModule mod_negotiation.c>
    Options +FollowSymlinks -MultiViews
</IfModule>

AddHandler application/x-httpd-php71 .php
RewriteEngine On

# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>