后臺不能登錄:提示”服務器內部錯誤“
PC端:首頁瀏覽變成下載文件了,下載的文件內容附后面
【產品名稱】:CRMEB多店版
【產品版本】:v3.1.1
【部署方式】:linux/win寶塔面板 /nginx
【部署環境】:例:本地環境 / 線上環境
【php版本】:7.3
【Mysql版本】:5.7
【使用終端】:PC / 后臺
后臺提示圖
PC端:首頁下載文件的內容如下
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// [ 應用入口文件 ]
namespace think;
define('DS', DIRECTORY_SEPARATOR);
require __DIR__ . '/../vendor/autoload.php';
// 執行HTTP應用并響應
$http = (new App())->http;
$response = $http->run();
$response->send();
$http->end($response);