English 中文(简体)
Redirect https://www.mydomain.com至https://mydomain.com
原标题:Redirect https://www.mydomain.com to https://mydomain.com in Play framework

我们重新利用“游戏”。 对于那些浏览到“https://www.mydomain.com”的用户,我们要将其转至“https://mydomain.com”。

一旦我们的网络应用,就不会有像阿帕奇这样的前端网络服务器。 该节目将全部用于“游戏”。 (我们已经掌握着《关贸总协定》的工作。) 这在“游戏”中很容易。

在进行发展测试时,我们可以在我们/etc/hosts档案中添加疏漏、土多曼和酒吧。

关于如何将www.mydomain.com改用在纯游乐环境中的我的主.com的想法?

问题回答

我们把它 out开。 解决办法在发展中发挥作用,我们期望它做的是罚款。

我们在主计长班子上添加了一种@Before方法,这样做是:

@Before
public static void redirectIfNeeded() {
  String baseUrl = play.Play.configuration.getProperty("application.baseUrl");
  if (baseUrl.indexOf(request.domain) == -1) {
      redirect(baseUrl);
  }
}

简言之,每次使用控制器方法时,我们都会确保电话域是我的主线。 申请。 baseUrl property) and not www.mydomain.com。 如果是我的主.com,则转往我的主人。





相关问题
Manage dependencies in a Play Framework app

I m trying to figure out the proper tools for managing dependencies between JARs. I have a Play Framework app, which imports a JAR (based on another project I m writing). This JAR imports other JARs, ...

Deploy Play! application as executable jar

Is it possible to bundle Play! web application to executable jar instead of war? Could it just be run on localhost at some port just like when using "play run" command? (without the need of installing ...

JPA: Store fileAttachment into the database

I would like to know if there is any way I can store a fileAttachment directly into the database with JPA. I have an attribute: public fileAttachement logo; I have tried to change it to: @Lob ...

Java Web Development and Automatic Feedback

I ve been having a (ironic) play around with the Play Framework and have been impressed thus far. I was just curious as to what other Java frameworks are out there that have a similar feature to Play ...

Java web frameworks

I was looking around to see if there is an equivalent to django/RoR in java. I found: Play Framework Grails Does anyone have ever tried those frameworks, or do you know any other? Are they faster ...

热门标签