Change directory for base home page

berenland

Verified User
Joined
Jun 26, 2007
Messages
13
Hi!

I have an website let's say www.domain.nl but after a while im changing the the website and build www.domain.nl/portal
After check's etc we would like to change to the new site build at www.domain.nl/portal
I can use the option to forward the www.domain.nl to this subdir. But when i do such all the subdomains change to it also. We have for example course.dlza.nl and they may be not changed.

Does anyone have a tip how to fix this ?
I would like to have only the www.domain.nl to change to www.domain.nl/portal

Regards,
 
Create a index.php file with this content:

Code:
<?php header( 'Location: http://www.domain.nl/portal/' ); ?>

Upload the index.php file to: domain.nl/public_html/index.php
 
Back
Top