I'm deploying a Laravel application to a server, and I'm having trouble creating a symbolic link:
The server public files are in theraiz/public_html
The public files of laravel are in the path raiz/aplicacao/public
I'm trying to create the symbolic link:
ln -s raiz/aplicacao/public raiz/public_html
The link was created, but access is as follows: www.mysite.com/public
How to make access only to www.myusite.com? Is it an error in my symbolic link or should this be done via .htaccess?