我正在尝试在共享主机包上部署Laravel 5.6应用程序。该软件包将DirectAdmin与PHP 7.2结合使用。
由于其他应用程序位于public_html
目录的子目录中,因此我不得不将应用程序也托管在子目录中。
在对将Laravel应用程序托管在子目录中进行了一些研究之后,我的设置如下所示:
- domains
- example.com
- public_html
- laravel
- otherapp
- other_site
- laravel_code
laravel
文件夹中的public_html
文件夹与Laravel应用程序中的每个public
文件夹具有相同的文件。这意味着文件index.php
,.htaccess
等...
laravel_code
文件夹目录由我的应用程序的源代码组成。我知道我必须将我的index.php
引用到该文件夹。我这样做是这样的:
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/
require __DIR__ . '/../../laravel_code/vendor/autoload.php';
/*
|--------------------------------------------------------------------------
| Turn On The Lights
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/
$app = require_once __DIR__ . '/../../laravel_code/bootstrap/app.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
我的.htaccess
文件如下:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
RewriteBase /
# 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>
当尝试导航到域时,我只得到一个HTTP 500错误页面,而我的storage/logs
文件夹中没有任何日志文件生成。
我已经尝试清除缓存并再次缓存配置。我也确定我的数据库凭据可以正常工作。
我的.env
文件如下:
APP_NAME=WBS
APP_ENV=local
APP_KEY=base64:knjh2YEuePhEzBblBp5zLJQOQEwaiRBOSkmxz1gcYGw=
APP_DEBUG=true
APP_URL=http://www.example.com/laravel/
LOG_CHANNEL=stack
DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=mydomain
DB_USERNAME=root
DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
文件也具有适当的权限,我为所有文件提供了755
的测试权限。
什么可能导致此HTTP 500错误,我该如何解决?
答案 0 :(得分:1)
要进行测试,请授予存储/文件权限777。
chmod -R 777 storage/
答案 1 :(得分:1)
对于错误,如果laravel.log为空,则可能需要查看Apache2 / Nginx错误日志。
您仍然可能需要根据文件结构(从here获取)更改公用路径。将以下内容添加到$.each
:
public/index.php
@Julius的答案也是部署时常见问题的解决方案。
答案 2 :(得分:1)
您可以在官方文档中查看如何处理错误
https://laravel.com/docs/5.7/errors
您可以将这段代码放在public / index.php上并捕获问题
try {
$app->run();
} catch(\Exception $e) {
echo "<pre>";
echo $e;
echo "</pre>";
}
答案 3 :(得分:0)
我有同样的问题。我使用此技巧在共享主机上部署了laravel应用程序。 Reference Lik
在Laravel 5.6中,在您的根目录中创建.htacess文件,并放置以下代码:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^ ^$1 [N]
RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
RewriteRule ^(.*)$ public/$1
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ server.php
希望它会对您有所帮助。
答案 4 :(得分:0)
我遇到了同样的问题,在尝试了上述答案的所有解决方案后,没有一个起作用。然后我尝试在Tinker中运行代码,我发现问题出在我的代码内部是无限循环。因此laravel错误处理程序无法正常工作或捕获任何错误。