Skip to content

Instantly share code, notes, and snippets.

@greut
Created September 11, 2008 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greut/10234 to your computer and use it in GitHub Desktop.
Save greut/10234 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">
if (navigator.appName == 'Netscape')
var language = navigator.language;
else if (navigator.appName == 'Microsoft Internet Explorer')
var language = navigator.browserLanguage;
if (language.indexOf('en') > -1) document.location.href = '/en/index.jsp';
else if (language.indexOf('de') > -1) document.location.href = '/de/index.jsp';
else
document.location.href = '/de/index.jsp';
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment