Skip to content

Instantly share code, notes, and snippets.

@typester
Created May 31, 2009 14:40
Show Gist options
  • Save typester/120905 to your computer and use it in GitHub Desktop.
Save typester/120905 to your computer and use it in GitHub Desktop.
$HTTP["url"] !~ "^/(?:(?:css|js|img|images?|statis|tmp)/|[^/]+\.[^/]+$)" {
$HTTP["url"] !~ "^/(en|ja)/" {
$HTTP["language"] =~ "(en|ja)" {
url.redirect = ( "^/(.*)" => "/%1/$1" )
}
$HTTP["language"] !~ "(en|ja)" {
url.redirect = ( "^/(.*)" => "/en/$1" )
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment