PDA

View Full Version : Redirecting by country


bramdaman
12-05-2001, 04:57 PM
I did a search on this topic but I couldn't find anything.
I wanna redirect Dutch, German, English and Asian all to a different page.

Can somebody give me a hint?

Bram

Icq: 54439536

eXtremal
12-05-2001, 05:40 PM
2 Options:
1. If mod_negotiation is enabled on your server and Option MultiViews, you may create pages such as:
index.html.en
index.html.fr
index.html.de
and so on.... and the webserver will display an appropriate page for each language.

2. You may put a little server side script, such as PHP:
<?php
$lang=$HTTP_SERVER_VARS['ACCEPT_LANGUAGE'];
if(preg_match("/en/",$lang)) {
require('englishpage.html');
}
elseif(preg_match("/de/",$lang)) {
require('germanpage.html');
}
and so on.
...
...
?>

bramdaman
12-06-2001, 01:01 AM
Originally posted by eXtremal:
<STRONG>2 Options:
1. If mod_negotiation is enabled on your server and Option MultiViews, you may create pages such as:
index.html.en
index.html.fr
index.html.de
and so on.... and the webserver will display an appropriate page for each language.

2. You may put a little server side script, such as PHP:
&lt;?php
$lang=$HTTP_SERVER_VARS['ACCEPT_LANGUAGE'];
if(preg_match("/en/",$lang)) {
require('englishpage.html');
}
elseif(preg_match("/de/",$lang)) {
require('germanpage.html');
}
and so on.
...
...
?&gt;</STRONG>

thanks ill try both!