Ok ... i found a solution.
Basically i've changed my ".htaccess" to:
RewriteEngine On
RewriteBase /project1/
RewriteRule ^(.*)$ public/$1 [L]
And on my web.php i created aroute::group like:
Route::group(['prefix'=>'project1'], function() {
... here i placed my routes ...
}
But now i'm getting some problems with CSS and JS files that are not beeing loaded.
When i open the developer mode on the browser i can see that the browser is looking for the files on:
• www.mysite.com/css/xpto.css
and i need that it looks to:
• www.mysite.com/project1/css/xpto.css
The same happen also for other assets like images and so one.
What should i change in order to get it working without change all the images, js and css paths?