Link Not Open Show All files

when i visit this url (https://excellentresumes.co.in/)
these occurs, give me solution on this, what should i do

Index of /
     Name    Last modified    Size    Description
     admin.excellentresum..>    2025-04-25 16:31    -     
     app/    2025-04-15 20:54    -     
     artisan    2025-04-15 20:54    425     
     aspl/    2025-04-22 16:01    -     
     bootstrap/    2025-04-15 20:54    -     
     composer.json    2025-04-15 20:54    2.4K     
     composer.lock    2025-04-26 11:01    290K     
     config/    2025-04-15 20:54    -     
     database/    2025-04-28 13:00    -     
     excellentresumes.zip    2025-04-28 13:13    41M     
     package.json    2025-04-15 20:54    354     
     phpunit.xml    2025-04-15 20:54    1.1K     
     public/    2025-04-15 20:54    -     
     resources/    2025-04-15 20:54    -     
     routes/    2025-04-15 20:54    -     
     storage/    2025-04-15 20:54    -     
     tests/    2025-04-15 20:54    -     
     vendor/    2025-04-26 11:04    -     
     vite.config.js    2025-04-15 20:54    331     

Solution :

Option 1: (Best Practice - Recommended)
Move the contents of public/ folder directly into public_html/

Step-by-step:

Open public/ folder.

Select everything inside (index.php, .htaccess, css/, js/, etc.).

Move/copy all those files directly into public_html/.

After moving, edit the index.php (which is now inside public_html/) — update the paths:

Change this in index.php:

require _DIR_.'/../vendor/autoload.php';
$app = require_once _DIR_.'/../bootstrap/app.php';
to this:

require _DIR_.'/vendor/autoload.php';
$app = require_once _DIR_.'/bootstrap/app.php';
🔵 (Just remove ../ from paths.)

Did you find this article useful?