a pic:

After moving a site, it stopped loading icons of cart, profile etc.
What is the problem?
Opencart Extensions | Professional opencart support | Support Ticket | support@cartbinder.com
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://topkamin.se/');
// HTTPS
define('HTTPS_SERVER', 'http://topkamin.se/');
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://topkamin.se/admin/');
// HTTPS
define('HTTPS_SERVER', 'http://topkamin.se/admin/');
Code: Select all
# SEO URL Settings
RewriteEngine On
RewriteBase /
Code: Select all
#Force (http host) www to non www (optional)
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
#Force (https host) www to non www (optional)
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
Code: Select all
#Force (http host) non www to www (optional)
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
#Force (https host) non www to www (optional)
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
My Github OC Site: https://github.com/IP-CAM
5'600 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.
Users browsing this forum: No registered users and 66 guests