Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3315662
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:22:36+00:00 2026-05-17T22:22:36+00:00

I’m building a site on google app engine and its core code and database

  • 0

I’m building a site on google app engine and its core code and database is designed to handle different languages and regions.

What I’m really looking for are suggestions on how the url’s should be structured, specifically for a gae/django/python setup, so the website knows what language it should be loading the pages in depending on the url.

Here are my suggestions, please chime in on what you think is best:

SUBDOMAIN: http://fr.mysite.com/
But is this possible to have different subdomains, such as “en”, “fr”, “de”, and still point to the same google app in your account?

DOMAIN EXTENSION: http://www.mysite.fr/ Would it be possible to purchase different domain names for each of the languages, then point it to the same app?

FIRST FOLDER: http://www.mysite.com/fr/about-us This method would work, but would be annoying to code for and I’d rather not have longer urls than needed. Thoughts?

Are there any other options I’m not thinking of? Any advice would be appreciated, thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:22:36+00:00Added an answer on May 17, 2026 at 10:22 pm

    All three of those are possibilities from a development standpoint. The “domain extension” model is likely to prove to be expensive and possibly impossible depending on your resources and the languages you wish to support – .fr for example is restricted to only residents or entities with a French presence.

    The “first folder” model may not be that difficult to program for. When setting up your handlers, you could do something like this:

    application = webapp.WSGIApplication(
    [
      ('/(en|fr|de)/', IndexController),
    ]
    

    Which would then explicitly pass the language identifier in as the first parameter to the handler.

    Subdomains, as you pointed out, are going to be the cleanest from a url perspective. As noted in the PythonRuntime Environment docs you can map multiple subdomains to the same application – in fact hosted applications will all respond to [anything].[application name].appspot.com. The host used for access can be extracted from the request object.

    Overall it seems like more of a personal preference than anything else.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.