PDA

View Full Version : To forward from the index.php to a directory.


navapart
01-08-2008, 05:25 AM
Hi,

Inside public_html directory, I've installed the folder

/wamp.

The main page of my site (http://www.navapartida.es/) is in the directory

/wamp/www/mambo/index.php.

So I need to forward

from /index.php

to /wamp/www/mambo/index.php.

I can't find the way to do that in Google.

Could you help me ?

Many thanks in advance.

Manuel

Basil
01-08-2008, 06:38 AM
<?php header("location: /wamp/www/mambo/index.php"); ?>

I should mention that that isn't the right path, otherwise you'd be able to get to it from navapartida.es/wamp/etc..

navapart
01-09-2008, 03:31 PM
Many thanks Basil.

It's solved.

navapart