With a domain pointing to an app on Heroku, I want to set the canonical link to the main domain, not the Heroku url, when the current url is the heroku url, and not the domain..

How do I do that and not have the canonical link there when someone goes to the site at the main domain url?

link|improve this question

58% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can use one of

ENV['HTTP_HOST']
ENV['SERVER_NAME']
ENV['DOCUMENT_ROOT']

to check whether the site is your main server and if not, print out the canonical URL.

You can also take a look at the ENV variable by dumping it out for more info:

<%= h ENV.inspect %>
link|improve this answer
i actually needed request.env["HTTP_HOST"], but you got me to the answer, thanks! – 99miles Nov 1 '10 at 18:45
feedback

Your Answer

 
or
required, but never shown

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