Подскажите как настроить htaccess для переадресации с www на https и с http на https ?
Делаю вот так.
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L,QSA]
#RewriteCond %{HTTP_HOST} ^www.v-son\.ru$ [NC]
#RewriteRule ^(.*)$
v-son.ru/$1 [R=301,L]
#RewriteCond %{SERVER_PORT} ^80$ [OR]
#RewriteCond %{HTTP} =on
#RewriteRule ^(.*)$
https://v-son.ru/$1 [R=301,L]
Ссылка
v-son.ru/postelnoe-belyo/all приводит на
https://v-son.ru/index.php, а должна на
https://v-son.ru/postelnoe-belyo/all
Т.е. параметры после названия сайта не воспринимаются.