I have a page made in laravel, it already has the SSL permission to be HTTPS.
Let's say it's https://www.mipagina.com
but I want the paths www.mipagina.com/dondeesta
and the folders that are inside " empresa
" www.mipagina.com/high/empresa/latest/
are always HTTP
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} !^/dondeesta [OR]
RewriteCond %{THE_REQUEST} !^/high/empresa/latest/
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R]
RewriteRule ^(.*?)$ public/$1 [L]
I already tried several examples of seeing several similar questions but none of them gives me the result I want