How to host application on server new way

 copy the htacess from public to root

copy the server.php from public to root but rename to index.php


htacess


<IfModule mod_rewrite.c>

    RewriteEngine On


    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^ index.php [L]

</IfModule>


Options -Indexes


<Files ".env">

    Require all denied

</Files>


==


index.php


<?php


use Illuminate\Http\Request;


define('LARAVEL_START', microtime(true));


if (file_exists($maintenance = __DIR__.'/storage/framework/maintenance.php')) {

    require $maintenance;

}


require __DIR__.'/vendor/autoload.php';


$app = require_once __DIR__.'/bootstrap/app.php';


$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);


$response = $kernel->handle(

    $request = Request::capture()

);


$response->send();


$kernel->terminate($request, $response);

==========================

chmod -R 775 storage bootstrap/cache

=======

asset_url in env added domain/public

How to host application on server new way

 copy the htacess from public to root copy the server.php from public to root but rename to index.php htacess <IfModule mod_rewrite.c>...