Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Domain To --> /catalog/


eeleek

Recommended Posts

Posted

well - you can create a html file called index.htm or .html that has a redirect command to the new site. Dreamweaver is great at that - just add a behavior that will automaticly redirect the web-user. Besides that - you'll have to change the forward path for the domain it's self..

Posted

you could simply create a PHP page that'll do that for you...

 

create an index file.. (default.php or index.php) --(whichever is your default document) and put this code in it:

 

<?php
header("Location: http://www.example.com/myfolder"); /* Redirect browser */

/* Make sure that code below does not get executed when we redirect. */
exit;
?>

 

-JG

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...