how to redirect for single page
-
according to browser language
for example:
ru browser language visit https://www.site.com/post.html
auto redirect to ru.site.com/post.html
how to make this happed?
php like :
<?php
$language = substr($_SERVER[‘HTTP_ACCEPT_LANGUAGE’],0,4);
if($language == “ru”) header(“Location: https://ru.site.com”);
else header(“Location: https://www.site.com”);
?>how to works with . qtranxf_convertURL($url, $language, false, true) .
- The topic ‘how to redirect for single page’ is closed to new replies.