Домен Connecting для поиска с помощью Google механизма приложения без приложений Google

Мы делаем это как так; этот код найден в BaseController

/// <summary>
/// returns our standard page not found view
/// </summary>
protected ViewResult PageNotFound()
{
    Response.StatusCode = 404;
    return View("PageNotFound");
}

названным как так

public ActionResult ShowUserDetails(int? id)
{        
    // make sure we have a valid ID
    if (!id.HasValue) return PageNotFound();
7
задан Alex Bolotov 11 September 2009 в 00:08
поделиться

1 ответ

Here is a couple of answers:

  1. No, Google App Engine uses Google Apps to manage domains. See the Deploying your Application on your Google Apps URL article.
  2. Yes, if you are a School or University as explained here. If you aren't, why don't you just go for the Standard Edition?
  3. Yes, for a couple of domains and a couple of GAE instances, you'll need a couple of Google Apps AFAIK. But this shouldn't be an issue as the Google Apps Standard Edition is free. No. As pointed out by Nick, you can add multiple domains to an Apps account as aliases, then map them to different App Engine apps.

Edit: The 3rd answer has been updated with the input provided by Nick Johnson in a comment.

11
ответ дан 6 December 2019 в 19:39
поделиться
Другие вопросы по тегам:

Похожие вопросы: