I have this:

http://example.com/EN/index.php - english version

http://example.com/PT/index.php - portuguese version

What I want: http://example.com/ to be taken to the portuguse page by default.


I've also been thinking on having the portuguese page on the root and english in the EN/ directory. is this better for SEO?

link|improve this question

You might be better off asking this on stackoverflow.com as this is a programming question. – ChrisF Jul 23 '09 at 13:12
oh well, I didn't know where do you draw the line. Do I ask there or wait this to be moved? – ino Jul 23 '09 at 13:30
feedback

migrated from superuser.com Jul 23 '09 at 13:37

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 1 down vote accepted

iam not sure if i understand the problem, but you can create an index.php in your root and change the header to forward the user to the PT/index.php

Header("Location: ./PT/index.php");

later you can construct an if/else check to verify the language of the browser etc..

link|improve this answer
Is this noticeable to the user? Does it work with all the browsers? Does this have any kind of disadvantages over not having redirect pages? – ino Jul 24 '09 at 10:27
Hi, iam not sure how google is reacting on this redirection, but it works on all browsers ;-) – ArneRie Jul 24 '09 at 12:07
feedback

Your Answer

 
or
required, but never shown

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