Answer the question
In order to leave comments, you need to log in
.htaccess redirect to https from an address like site.ru?
If you enter the site by entering the address of the type - site.ru and www.site.ru, the site fonts are not loaded. Made a redirect in htaccess (to redirect to - https://site.ru)
# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
Answer the question
In order to leave comments, you need to log in
RewriteCond %{HTTPS} on
RewriteRule ^.*$ http://%{SERVER_NAME}%{REQUEST_URI}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question