I have uploaded laravel 8 project but its showing index of/admin in when I run the admin page. Please help me.
Add .htaccess file in project's root directory with content
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)$ public/$1 [L] </IfModule>
To be sure you set default root folder to public.
If you using Apache you can rewrite with .htaccess:
Nginx with this:
root /var/www/your_domain/htdocs/public;
Add .htaccess file in project's root directory with content