
Originally Posted by
DrByte
All the URLs that Zen Cart builds from its built-in features are "relative" URLs, assembled in conjunction with the domain name specified in your configure.php files.
But if you hard-coded absolute URLs into your template or other files when you designed your site, then you'll have to manually change them all if you want them to point someplace else.
I suspected that was the case. Oh well...

Originally Posted by
DrByte
Also, if you have "rewrite" rules added to your .htaccess files, you should disable those in your test site else they'll interfere with normal operation.
Is that all rewrite rules? I've got:
Code:
RewriteEngine On
RewriteBase /testsite/zen-cart/
RewriteCond %{QUERY_STRING} currency=EUR$ [NC]
RewriteRule ^(.*)$ http://www.domain.co.uk/zen-cart/$1? [R=301,L]
RewriteCond %{HTTP_HOST} !^www.domain.co.uk$ [NC]
RewriteRule ^(.*)$ http://www.domain.co.uk/zen-cart/$1 [R=301,L]
Plus a load of manual redirects of old defunct urls which I understand can be deleted. Also the rewrites for SEO URLs.
Do they all need to go?
Thank you.