How To Change Url

Want to change current url appearance e.g https://abc.com/to https://www.abc.com/ on my multi-vendor site. What I need to do for this. Anyone please suggest.

admin>addons>seo

https://prnt.sc/khndh9

Be aware your google indexing may be affected if you change, so you may need to do redirects 301

Edit your domain in store information in admin and the file /config.local.php.

[attachment=13400:Screenshot_2018-08-12 Administration Stores - Administration panel.png]

// Host and directory where software is installed on no-secure server
$config['http_host'] = 'www.abc.com';
$config['http_path'] = '';

// Host and directory where software is installed on secure server
$config[‘https_host’] = ‘www.abc.com’;
$config[‘https_path’] = ‘’;

Screenshot_2018-08-12 Administration Stores - Administration panel.png

Do not forget to change store-front URLs on the Administration -> Stores page also

It solved finally. Thanks all