Options +FollowSymlinks
RewriteEngine on

#301 > HTTS with www

#RewriteCond %{HTTP_HOST} !^www\. [OR]
#RewriteCond %{SERVER_PORT} 80
#RewriteRule ^(.*) https://www.domain.fr%{REQUEST_URI}$1 [R=301,L]

#301 > HTTS without www

RewriteCond %{HTTP_HOST} ^www\. [OR]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*) https://testbazar.ovh%{REQUEST_URI}$1 [R=301,L]