I have shared hosting, I have created lot of webiste on it,
recently I have created laravel project, on local it's working fine, I have uploaded that file into subfolder i.e http://myurl.com/laravel_project
but when I am hitting this url it's not working, its giving an error
Forbidden You don't have permission to access this resource.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
and when I am hitting http://myurl.com/laravel_project/public it is working fine,
I want to work that pulic folder as a http://myurl.com/laravel_project
I have created .htaccess
file on http://myurl.com/laravel_project and the code is
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
but it showing
Page not found
Homepage | Go Back