Reputation: 63
I'm dealing with a noob problem right now. I want to do a permanent redirection, with .htaccess, from a Heroku app domain to my custom domain.
I'm trying with this:
redirect 301 http://app.herokuapp.com/ http://mycustomdomain.com/
And no luck. app.herokuapp is still serving there, and no redirecting to mycustomdomain
Can you help me with this?
Upvotes: 1
Views: 1222
Reputation: 63
Well, figured out by myself. Was easy.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^app.herokuapp.com$ [NC]
RewriteRule ^(.*)$ http://mycustomdomain.com/$1 [R=301,L]
Upvotes: 2