如何删除laravel上的公共目录

I using laravel 5.8 when I upload my project on shared hosting I renamed server.php to index.php in document root and my htaccess in /public_html is like that: Options -MultiViews

RewriteEngine On

RewriteCond %{HTTPS} !on
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^ ^$1 [N]

RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
RewriteRule ^(.*)$ public/$1 

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php

that's works correctly but now I want to remove /public route because when I try to enter mysite.com/public is similar to mysite.com