I have uploaded laravel project but its showing index of/admin. how to fix it?

538 Views Asked by At

I have uploaded laravel 8 project but its showing index of/admin in when I run the admin page. Please help me.

1

2

There are 2 best solutions below

2
Ruchita Sheth On

Add .htaccess file in project's root directory with content

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
0
Ngorld On

To be sure you set default root folder to public.

If you using Apache you can rewrite with .htaccess:

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

Nginx with this:

root /var/www/your_domain/htdocs/public;