help with redirect problem

supernour09

Regular Member
Joined
Jul 20, 2011
Messages
383
Reaction score
62
simple i have domain and i am try to install magneto on it and i did but the problem that it been install on sub folder ww.domain.c0m /magento and who vist only my domain it get nothing can any one help with a redirect who visit my root domain to my sub folder
 
easiest thing to do is do it from your host control panel - either point the domain to that folder (so taht the visitor goes to yourdomain.com but they see files from magento directory), or if you cant do that, just setup a http redirect from yourdomain.com to yourdomain.com/magento.

OR

create a index.php in root of domain, with following text:

Code:
<?php

header("Location: http://www.yourdomain.com/magento");

?>
 
Back
Top