راهنما تغییر فایل public به public _html در لاراول
1.تغییر نام فایل public به public_html
2.اضافه کردن کد زیر به appserviceprovider.php
$this->app->bind('path.public', function() {
return base_path().'/public_html';
});
3.تغییر کد در server.php
if ($uri !== '/' && file_exists(__DIR__.'/public_html'.$uri)) {
return false;
}
require_once __DIR__.'/public_html/index.php';
-