如何在Laravel 5中将公用文件夹更改为public_html

如何在Laravel 5中将公用文件夹更改为public_html,第1张

如何在Laravel 5中将公用文件夹更改为public_html

通过简单的搜索就很容易找到它。

在您的index.php中添加以下3行。

$app = require_once __DIR__.'/../bootstrap/app.php';// set the public path to this directory$app->bind('path.public', function() {    return __DIR__;});

编辑:


正如Burak Erdem提到的,另一个选择(也是更可取的)是将其放入

AppProvidersAppServiceProvider

register()
方法中。

public function register(){    // ...    $this->app->bind('path.public', function() {        return base_path('public_html');    });}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5602417.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存