The article describes how to change the site address only within PrestaShop itself. To rename a hosting site (virtual host in the section "My sites»And the site directory on FTP), use instruction.
UPDATE ps_configuration SET VALUE = REPLACE(VALUE, 'old-address.com', 'new-address.com') WHERE name = 'PS_SHOP_DOMAIN' OR name = 'PS_SHOP_DOMAIN_SSL';
If the names of the tables in the database do not start with the standard ps_
, and with a different prefix, make the appropriate change to the SQL query.
from 2-00 to 7-00