我的网站文件夹是www.domain.com/public/ 我在htaccess中创建了一个重定向到这个文件夹,但我想强制https并隐藏地址栏中的子文件夹。
重定向和子文件夹隐藏正在工作,https不是,你能帮助我吗,非常感谢。
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.newlabeventi.it
RewriteCond %{REQUEST_URI} !^public
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^(.*)$ public/$1 [L]