Leravel 5的部署越來越:Laravel 5部署得到內部服務器錯誤
內部服務器錯誤
服務器遇到一個內部錯誤或配置錯誤,無法完成您的請求
我的文件結構:
|
|-pub -> from laravel folder public
|-my_apps
|- my_first_app -> all other files from laravel project
|- app
|- bootstrap
|- config
|- database
|- resources
|- storage
|- ...
我設置了存儲文件夾的權限爲:
用戶:: RWX
組:: RWX
其他:: RWX
這是我的目錄.htaccess文件/pub
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteBase/<-------- I added this line
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
</IfModule>
我也改變\pub\index.php
<?php
//updated path
require __DIR__.'/../my_apps/my_first_app/bootstrap/autoload.php';
//updated path
$app = require_once __DIR__.'/../my_apps/my_first_app/bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
P我的本地機器上的惠普是PHP 5.6,它是PHP 5.5。我試過後RewriteEngine On
行添加
AddHandler application/x-httpd-php55 .php
在.htaccess。
更新
服務器運行PHP 5.5.0,所以我降級我Laravel 5.1至5.0,而現在它工作在宅基地。 而我下面https://medium.com/laravel-news/the-simple-guide-to-deploy-laravel-5-application-on-shared-hosting-1a8d0aee923e#.50q2s8wer在這一刻部署。 降級實際上未能當我檢查laravel
檢查laravel和apache日誌以獲取有關錯誤本質的更多信息。 –
檢查PHP版本 – sixFingersMan
PHP版本5.5.0在服務器上,我使用PHP 5.6在家園開發 – daolincheng