我正在处理一个菜鸟问题。我希望使用.htaccess进行永久重定向,从Heroku应用程序域到我的自定义域。
我正在尝试这个:
redirect 301 http://app.herokuapp.com/ http://mycustomdomain.com/
没有运气。 app.herokuapp仍然在那里服务,没有重定向到mycustomdomain
你能帮我解决这个问题吗?
答案 0 :(得分:2)
好吧,我自己想通了。很容易。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^app.herokuapp.com$ [NC]
RewriteRule ^(.*)$ http://mycustomdomain.com/$1 [R=301,L]