Sydney Beau
Sydney Beau

Reputation: 63

The right way to redirect from herokuapp.com to custom domain with htaccess

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

Answers (1)

Sydney Beau
Sydney Beau

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

Related Questions