diff --git a/app/models/map-features/lot.js b/app/models/map-features/lot.js
index db210831..126bb6fd 100644
--- a/app/models/map-features/lot.js
+++ b/app/models/map-features/lot.js
@@ -543,7 +543,7 @@ export default class LotFragment extends MF.Fragment {
 
     @computed('bbl')
     get digitalTaxMapLink() {
-      return `http://maps.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=${this.bbl}`;
+      return `http://gis.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=${this.bbl}`;
     }
 
     @computed('zonemap')
diff --git a/tests/unit/models/lot-test.js b/tests/unit/models/lot-test.js
index e03714b4..e08236e6 100644
--- a/tests/unit/models/lot-test.js
+++ b/tests/unit/models/lot-test.js
@@ -62,7 +62,7 @@ module('Unit | Model | lot', function(hooks) {
     const model = await this.owner.lookup('service:store')
       .findRecord('lot', 1007650065);
 
-    assert.equal(model.properties.digitalTaxMapLink, 'http://maps.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=1007650065');
+    assert.equal(model.properties.digitalTaxMapLink, 'http://gis.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=1007650065');
   });
 
   test('it generates correct links: Zoning Map', async function(assert) {