diff --git a/datacenterlight/urls.py b/datacenterlight/urls.py
index f5f84ba9..5c9ffcd7 100644
--- a/datacenterlight/urls.py
+++ b/datacenterlight/urls.py
@@ -1,11 +1,15 @@
 from django.conf.urls import url
 
-from .views import IndexView, BetaProgramView, LandingProgramView, BetaAccessView, PricingView, SuccessView, \
-    PaymentOrderView, OrderConfirmationView, WhyDataCenterLightView, ContactUsView
-
+from .views import IndexView, BetaProgramView, LandingProgramView, \
+    BetaAccessView, PricingView, SuccessView, \
+    PaymentOrderView, OrderConfirmationView, \
+    WhyDataCenterLightView, ContactUsView
 
 urlpatterns = [
     url(r'^$', IndexView.as_view(), name='index'),
+    url(r'^t$', IndexView.as_view(), name='index_t'),
+    url(r'^g$', IndexView.as_view(), name='index_g'),
+    url(r'^f$', IndexView.as_view(), name='index_f'),
     url(r'^whydatacenterlight/?$', WhyDataCenterLightView.as_view(),
         name='whydatacenterlight'),
     url(r'^beta-program/?$', BetaProgramView.as_view(), name='beta'),