У вас и так хаос в хтацесе, так еще копипастом в конце вы усугубили ситуацию :)
Создайте новый с таким содержимым:
Options +FollowSymlinks -Indexes -MultiViews
<IfModule mod_dir.c>
DirectoryIndex index.php
</IfModule>
<FilesMatch "\.(tpl|ini|log)">
Order deny,allow
Deny from all
</FilesMatch>
<IfModule mod_rewrite.c>
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]
#редирект c www на без www
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
#редирект c http на https
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</IfModule>
# Force UTF-8 for a number of file formats
<IfModule mod_mime.c>
AddCharset utf-8 .html .css .js .xml .json .rss .txt .php .tpl
</IfModule>