diff --git a/homeassistant/components/hassio/__init__.py b/homeassistant/components/hassio/__init__.py
index 6939c1f7073441d2e0c55058789525af8673e95e..d427b2be60d39b4e9e877b53737eeeeafc8fa76b 100644
--- a/homeassistant/components/hassio/__init__.py
+++ b/homeassistant/components/hassio/__init__.py
@@ -325,7 +325,7 @@ async def async_setup(hass, config):
         if errors:
             _LOGGER.error(errors)
             hass.components.persistent_notification.async_create(
-                "Config error. See [the logs](/developer-tools/logs) for details.",
+                "Config error. See [the logs](/config/logs) for details.",
                 "Config validating",
                 f"{HASS_DOMAIN}.check_config",
             )
diff --git a/homeassistant/components/homeassistant/__init__.py b/homeassistant/components/homeassistant/__init__.py
index 83166ba4cce7a7f8ff750cec37c19713a8d05adc..f1b8d4e87d6f307121be689f4dcc7ea59e541b16 100644
--- a/homeassistant/components/homeassistant/__init__.py
+++ b/homeassistant/components/homeassistant/__init__.py
@@ -112,7 +112,7 @@ async def async_setup(hass: ha.HomeAssistant, config: dict) -> bool:
         if errors:
             _LOGGER.error(errors)
             hass.components.persistent_notification.async_create(
-                "Config error. See [the logs](/developer-tools/logs) for details.",
+                "Config error. See [the logs](/config/logs) for details.",
                 "Config validating",
                 f"{ha.DOMAIN}.check_config",
             )
diff --git a/homeassistant/components/safe_mode/__init__.py b/homeassistant/components/safe_mode/__init__.py
index aef6834303b04fde7379fc0d6f8d64394ae74233..94bd95aabe09e3975f46b230c00b158a4c55e8dc 100644
--- a/homeassistant/components/safe_mode/__init__.py
+++ b/homeassistant/components/safe_mode/__init__.py
@@ -9,7 +9,7 @@ async def async_setup(hass: HomeAssistant, config: dict):
     """Set up the Safe Mode component."""
     persistent_notification.async_create(
         hass,
-        "Home Assistant is running in safe mode. Check [the error log](/developer-tools/logs) to see what went wrong.",
+        "Home Assistant is running in safe mode. Check [the error log](/config/logs) to see what went wrong.",
         "Safe Mode",
     )
     return True