Да, верно. Все от корня.
Прописал в .htaccess. Во-первых не работает. Что-то видимо не так сделал. Во-вторых мне сказали, что .htaccess не нужно засорять единичными правилами. Подскажите, пожалуйста, как в этой ситуации стоит грамотно назначить 301 редирект?
<IfModule mod_rewrite.c>
RewriteBase /
#Редирект с www to non-www(https)
RewriteCond %{HTTP_HOST} ^www.poznavajamir.ru$ [NC]
RewriteRule ^(.*)$ https://poznavajamir.ru/$1 [R=301,L]
#Редирект с http to https
#RewriteCond %{HTTPS} off
#RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^system/download/(.*) index.php?route=error/not_found [L]
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]
RewriteCond %{REQUEST_URI} ^/stati/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/novosti/$
RewriteRule ^.*$ https://poznavajamir.ru/information/novosti-magazina/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/kak-ne-oshibitsya-v-vybore-teleskopa/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/teleskopy-info/kak-ne-oshibitsya-v-vibore-teleskopa/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/klassy-teleskopov-plyusy-i-minusy/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/teleskopy-info/klassy-teleskopov/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/vybiraem-horoshy-teleskop/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/teleskopy-info/vybiraem-horoshiy-teleskop/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/stoit-li-pokupat-rebenku-dorogoy-mikroskop/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/mikroskopy-info/stoit-li-rebenku-pokupat-dorogoy-mikroskop/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/vybiraem-horoshy-mikroskop/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/mikroskopy-info/vybiraem-horoshiy-mikroskop/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/kak-samostoyatelno-izgotovit-mikropreparaty/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/mikroskopy-info/kak-samostoyatelno-izgotovit-mikropreparati/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/kak-vybrat-teatralnyj-binokl/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/binokli-info/kak-vybrat-teatralniy-binokl/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/na-chto-obrashchat-vnimanie-pri-vybore-binoklya/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/binokli-info/na-chto-obrashchat-vnimanie-pri-vibore-binoklya/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/chto-vliyaet-na-cenu-binoklya/$
RewriteRule ^.*$ https://poznavajamir.ru/information/stati-o-tovarah/binokli-info/chto-vliyaet-na-cenu-binokley/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/novaya-seriya-optiki-levenhuk-uzhe-v-nalichii/$
RewriteRule ^.*$ https://poznavajamir.ru/information/novosti-magazina/novaya-seriya-optiki-levenhuk-uzhe-v-nalichii-2018-03-21/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/novaya-lineyka-detskih-mikroskopov-levenhuk-labzz/$
RewriteRule ^.*$ https://poznavajamir.ru/information/novosti-magazina/novaya-linejka-detskih-mikroskopov-levenhuk-labzz-25-07-2017/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/priblizhaetsya-sezon-nablyudeniya-za-zvezdnym-nebom/$
RewriteRule ^.*$ https://poznavajamir.ru/information/novosti-magazina/priblizhaetsya-sezon-nablyudeniya-za-zvezdnym-nebom-2017-07-14/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/produkciya-bresser-snova/$
RewriteRule ^.*$ https://poznavajamir.ru/information/novosti-magazina/bresser-v-nalichii-02-05-2017/? [R=301,L]
RewriteCond %{REQUEST_URI} ^/obyavlyaem-skidki-na-produkciyu-levenhuk-sky-watcher-i-bresser/$
RewriteRule ^.*$ https://poznavajamir.ru/information/novosti-magazina/obyavlyaem-skidki-na-produkciyu-levenhuk-sky-watcher-i-bresser-2016-09-01/? [R=301,L]
</IfModule>