How to transform concrete test site into real site

Permalink
Hi All,
I'm really new at this so pardon my lack of understanding. I have been playing around with concrete5 on a test url off of my main webpage url. Now that i feel comfortable with my test url, how can i transform this test site into my actual url? so like ill go tohttp://www.example.com instead ofhttp://www.example.com/test.

All the help will be greatly appreciated.
Hieu

 
Brainakazariua replied on at Permalink Reply
Brainakazariua
Move your site from the /test to the /
then edit your /config/site.php and edit the following lines:

define('BASE_URL', 'http://www.yoursite.com');
define('DIR_REL', '/test');


to

define('BASE_URL', 'http://www.ýoursite.com');
define('DIR_REL', '');


it's possible that you have it in a single line stating the base url is something likehttp://www.yoursite.com/test then just change that line tohttp://www.yoursite.com
hieu321 replied on at Permalink Reply
Hi Brainakazinua,
Where can i go to move the site from /test to /? I'm currently using Bluehost to host my site.

Thanks,
Hieu
Brainakazariua replied on at Permalink Reply
Brainakazariua
you can do so using FTP or SSH.
Go to the directory your site folders and files are at and move it one directory up.