diff --git a/src/gitlab.py b/src/gitlab.py
index d66593cf2aa56e5b6eee3ee4d198ab226ec66450..c872a31e5311f652abdc25523ef03e9cc3e14636 100644
--- a/src/gitlab.py
+++ b/src/gitlab.py
@@ -1,8 +1,8 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://git.shore.co.il/", "codes": [301, 302]},
-    {"url": "https://git.shore.co.il/", "codes": [301, 302]},
+    {"url": "http://git.shore.co.il/", "codes": [301]},
+    {"url": "https://git.shore.co.il/", "codes": [302]},
     {"url": "https://git.shore.co.il/explore/"},
 ]
 
diff --git a/src/kodi.py b/src/kodi.py
index bbf3809a7f57883354fc8ae191e6bbbd1ab10b6b..df903c24e97550a4fab16787de61dfce9fc98cf4 100644
--- a/src/kodi.py
+++ b/src/kodi.py
@@ -1,7 +1,7 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://kodi.shore.co.il/", "codes": [301, 302]},
+    {"url": "http://kodi.shore.co.il/", "codes": [301]},
     {"url": "https://kodi.shore.co.il/", "codes": [401]},
 ]
 
diff --git a/src/nextcloud.py b/src/nextcloud.py
index abbf4037a87d2e33a89f52e737f389cf8d2bd6e8..c5d29a897d4c8af35868ec4b218daa0fc02f2216 100644
--- a/src/nextcloud.py
+++ b/src/nextcloud.py
@@ -1,8 +1,8 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://nextcloud.shore.co.il/", "codes": [301, 302]},
-    {"url": "https://nextcloud.shore.co.il/", "codes": [301, 302]},
+    {"url": "http://nextcloud.shore.co.il/", "codes": [301]},
+    {"url": "https://nextcloud.shore.co.il/", "codes": [302]},
     {"url": "https://nextcloud.shore.co.il/login"},
 ]
 
diff --git a/src/notify.py b/src/notify.py
index 86c7092c06644d3b1f3576c1957cbd04afddd1ed..ffdfcde7580013bc776bbfba04d70074ffb873fb 100644
--- a/src/notify.py
+++ b/src/notify.py
@@ -1,7 +1,7 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://notify.shore.co.il/", "codes": [301, 302]},
+    {"url": "http://notify.shore.co.il/", "codes": [301]},
     {"url": "https://notify.shore.co.il/ping"},
 ]
 
diff --git a/src/registry.py b/src/registry.py
index fb66094c89404e0a6a7407ae831129bc1b946d4a..59266201c2ff2aec5e0beb7617da2575e2e08952 100644
--- a/src/registry.py
+++ b/src/registry.py
@@ -1,7 +1,7 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://registry.shore.co.il/", "codes": [301, 302]},
+    {"url": "http://registry.shore.co.il/", "codes": [301]},
     {"url": "https://registry.shore.co.il/"},
     {"url": "https://registry.shore.co.il/v2/_catalog"},
 ]
diff --git a/src/transmission.py b/src/transmission.py
index 5467d1dcbd12e124779f4b712dfbb538c4fb744c..3d53e3de2776bfce2ed814c537b29c6dc07021c0 100644
--- a/src/transmission.py
+++ b/src/transmission.py
@@ -1,7 +1,7 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://transmission.shore.co.il/", "codes": [301, 302]},
+    {"url": "http://transmission.shore.co.il/", "codes": [301]},
     {"url": "https://transmission.shore.co.il/", "codes": [401]},
 ]
 
diff --git a/src/vouch.py b/src/vouch.py
index 55ffac0466eb1204d526f7266cad04b4fc227258..e689a0f0a17aa396691b2b2ab1986acc894d6bc9 100644
--- a/src/vouch.py
+++ b/src/vouch.py
@@ -1,7 +1,7 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://vouch.shore.co.il/", "codes": [301, 302]},
+    {"url": "http://vouch.shore.co.il/", "codes": [301]},
     {"url": "https://vouch.shore.co.il/validate", "codes": [401]},
 ]
 
diff --git a/src/www.py b/src/www.py
index efd55da1fd5b07bc8bd066da61f318c559a9a71e..e675d733567e94777ff083c1a33e5f7748c2cc05 100644
--- a/src/www.py
+++ b/src/www.py
@@ -1,9 +1,9 @@
 from utils import website_handler
 
 URLS = [
-    {"url": "http://shore.co.il/", "codes": [301, 302]},
-    {"url": "http://www.shore.co.il/", "codes": [301, 302]},
-    {"url": "https://shore.co.il/", "codes": [301, 302]},
+    {"url": "http://shore.co.il/", "codes": [301]},
+    {"url": "http://www.shore.co.il/", "codes": [301]},
+    {"url": "https://shore.co.il/", "codes": [301]},
     {"url": "https://www.shore.co.il/blog"},
 ]