I really dunno much about HTAccess, but here's what i have to do:
if the path is like domain.it/installatori
then it will just call the pages within the /installatori
folder
otherwise use existing code (which is what follows):
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [R=301,L]
</IfModule>
I know it's probably a dummy question with a really easy solution, but i just don't know it and can't find anything helping me
NOTE: the website is build with laravel and the other subwebsite in the installatori
folder is another laravel website, each of these website have their own routing algorithm