need do auto redirect to https://www.... with SEO, i have that code
Options +FollowSymlinks
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] // that for SEO variable
How i can do, if customer use http:// auto redirect to https://www.* AND if use https://name.com (without www.) auto redirect to https://www.* ? and too with variable $1 for SEO :) need to supplement the existing rule, sorry for my English)