How to redirect to public folder on laravel How to redirect to public folder on laravel laravel laravel

How to redirect to public folder on laravel


For htaccess

RewriteEngine onRewriteCond %{HTTP_HOST} ^example.com$ [NC,OR]RewriteCond %{HTTP_HOST} ^www.example.com$RewriteCond %{REQUEST_URI} !project/public/RewriteRule (.*) /project/public/$1 [L]

Put it into your public_html/ or www/ folder where is the root of example.com/


I created this php script and placed in the in the root of the laravel directory:

    $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";    header("Location: " . $actual_link . "public/index.php");