I developed an application with laravel 4.2.8 and now I am having trouble deploying it. I followed this answer https://stackoverflow.com/a/16683938/3153380 but its not worki
Try to play with .htaccess
.htaccess
In your public_html, add a .htaccess to forward the request
public_html
RewriteEngine on RewriteCond %{REQUEST_URI} !^yoursite.com/public RewriteRule ^(.*)$ yoursite.com/public/$1 [L]
i.e.
public_html ├── yoursite.com <-------- laravel project ├── .htaccess <-------- this file