Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have heroku app ie my-app.herokuapp.com. This is Java application which is deployed on jetty

What I want get is transparent http traffic dispatch - without redirects (no 3xx statuses).

I have domain xyz.com, want configure something like this:

  • xyz.com/* -> my-app.herokuapp.com/*
  • api.xyz.com/* -> my-app.herokuapp.com/api/*

Does it possible to configure heroku in this way?

share|improve this question

1 Answer

up vote 1 down vote accepted

You'll need to use some rewrite rules to map requests for that domain. You can point both domains to the same heroku domain with DNS. I wouldn't recommend using a naked root domain, but you could use www.xyz.com.

$ heroku domains:add www.xyz.com
$ heroku domains:add api.xyz.com

And in .htaccess

RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^api.xyz.com
RewriteRule ^(.*)$ api/$1 [L,QSA]

Note: I'm making a big assumption you are using Apache, as nothing was noted about the stack. Same principles apply though

share|improve this answer
Thank you for reply. I'm using jetty (java - application on heroku). I'll switch to use only subdomains as you recommend. – lstrzelecki Feb 26 at 7:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.