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

时间:2018-02-15 05:46:15

标签: php linux laravel laravel-5 laravel-5.3

当我访问网址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');
    }

}

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

2 个答案:

答案 0 :(得分:0)

清除配置并逐个运行这些命令。

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

希望这有帮助

答案 1 :(得分:0)

我改变了我的.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>