if you don't want to move all your file into the root directory you can possibly do somethins like the example below
I you want to completely get rid of the old site you can create a index.php in your old store root directory and place the the following code on top of the index.php file before any html code.
<?PHP
header('Location: http://www.xyz.com/shop');
?>
so whenever your customer visit the old link www.xyz.com/store, it will redirect them to the new store www.xyz.com/shop.




