diff --git a/corporate/urls.py b/corporate/urls.py
index 3de0066451..cbd185432d 100644
--- a/corporate/urls.py
+++ b/corporate/urls.py
@@ -12,13 +12,8 @@ urlpatterns = patterns('',
     url(r'^zephyr-mirror/$', TemplateView.as_view(template_name='corporate/zephyr-mirror.html')),
 
     # Marketing
-    # Landing page, features pages, signup form, etc.
-    url(r'^hello/$', TemplateView.as_view(template_name='corporate/hello.html'),
-                                         name='landing-page'),
-    url(r'^new-user/$', RedirectView.as_view(url='/hello')),
-    url(r'^features/$', TemplateView.as_view(template_name='corporate/features.html')),
     url(r'^compare/$', TemplateView.as_view(template_name='corporate/compare.html')),
-
+    # signup form
     url(r'^signup/$', TemplateView.as_view(template_name='corporate/signup.html'),
                                          name='signup'),
     # TODO: The beta signup view should probably be moved to corporate.
diff --git a/templates/zerver/hello.html b/templates/zerver/hello.html
index a25058abca..ab065322ef 100644
--- a/templates/zerver/hello.html
+++ b/templates/zerver/hello.html
@@ -10,7 +10,11 @@
         Finally, workplace chat that actually improves your productivity.*
       
       * It's also great for sharing cat pictures.
-      Sign up now, for free!
+      {% if not_enterprise %}
+        Sign up now, for free!
+      {% else %}
+        Register now!
+      {% endif %}
     
     
   
@@ -170,7 +174,11 @@