Moved to new host and homepage redirects
Permalink 1 user found helpfulMigrating a 5.6 site (will upgrade when customer can afford it) and it has a temp web address until we update the NameServers. Updated all the DB connections and config, but when I hit the temp web address, it redirects to :
http://www.mytempwebaddress.co.uk/BASE_URL/...
I can't seem to find anything in any of the configs, the .htaccess has nothing obvious, if anyone could help please?
Cheers

In the public_html/config/site.php file it just has a list of definitions for DB connections and enable_cache and db_use_cache entries set to false and true respectively.
The site_themes_path.php in the same config folder just has
defined('C5_EXECUTE') or die(_("Access Denied."));
All other entries are commented out.
In public_html > concrete > config > theme_paths.php
defined('C5_EXECUTE') or die("Access Denied."); $v = View::getInstance(); // TODO - make this honor * better, actually work for more than just dashboard $v->setThemeByPath('/dashboard', 'dashboard'); $v->setThemeByPath('/dashboard/*', 'dashboard'); $v->setThemeByPath('/page_forbidden', VIEW_CORE_THEME); $v->setThemeByPath('/page_not_found', VIEW_CORE_THEME); $v->setThemeByPath('/install', VIEW_CORE_THEME); $v->setThemeByPath('/login', VIEW_CORE_THEME); $v->setThemeByPath('/register', VIEW_CORE_THEME); $v->setThemeByPath('/maintenance_mode', VIEW_CORE_THEME);
Then found this in the base.php in the same location:
Changed to false and voila! works! :-)
https://domainname.com/BASE_URL/index.php?cID=xxx... (where xxx is the pagename) and then I found this in the bulk SEO tool (see attached).
Cheers,
Andy
Just added
define('BASE_URL', 'http://newurlhere');
to root / config / site.php
:-)