Buenas a todos! Quiero mover todas las peticiones de HTTP a HTTPS. Tengo un .htaccess tal que así:
RewriteEngine On
RewriteCond %{HTTPS} !=on
Options -MultiViews
Header unset ETag
FileETag None
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
Header append Vary User-Agent
RewriteCond %{HTTP_HOST} !^www.*$ [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ src/index.php [L]
RewriteRule ^/?$ src/index.php [L]
He googleado y he probado mil opciones pero ninguna me rula, como estoy usando un framework (Silex) se termina volviendo loco...
Toda ayuda será bien recibida...
Gracias!