Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't know what's the correct way to put this, but here's what I would like to do.

I have localhost set up in /var/www/ and there's an index.php file in the folder serving as the index page for the localhost. I have drupal set up in /var/www/drupal/, is there a way to point the front page to drupal folder when I go to localhost in web browser?

share|improve this question

closed as off topic by casperOne Jun 22 '12 at 11:57

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 2 down vote accepted

try putting this into /var/www/index.php:

<?php
   header( 'Location: http://www.example.com/drupal/' ) ;
?>
share|improve this answer
on second thoughts, it probably doesn't need the domain name -- the other answer is better as it won't break if you change the domain name. – hdgarrood Jun 20 '12 at 19:49
still, thanks man – user1301840 Jun 20 '12 at 19:51

Simple solution: put HTTP redirection inside index.php:

<? Header('Location: drupal/'); ?>
share|improve this answer
thanks a lot !! – user1301840 Jun 20 '12 at 19:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.