diff --git a/BTCPayServer/Views/LNURL/EditLightningAddress.cshtml b/BTCPayServer/Views/LNURL/EditLightningAddress.cshtml
index 484d3d99f..cbb63f0a7 100644
--- a/BTCPayServer/Views/LNURL/EditLightningAddress.cshtml
+++ b/BTCPayServer/Views/LNURL/EditLightningAddress.cshtml
@@ -27,6 +27,15 @@
}
+@if (Context.Request.PathBase.ToString() != string.Empty)
+{
+
+ Your BTCPay Server installation is using the root path @Context.Request.PathBase.
+ This is incompatible with wallets attempting to resolve @Context.Request.GetAbsoluteUriNoPathBase(new Uri("/.well-known/lnurlp/{username}", UriKind.Relative)) rather than @Context.Request.GetAbsoluteUri("/.well-known/lnurlp/{username}").
+ If the LN Address doesn't work, ask your integrator to redirect queries from @Context.Request.GetAbsoluteUriNoPathBase(new Uri("/.well-known/lnurlp/{username}", UriKind.Relative)) to @Context.Request.GetAbsoluteUri("/.well-known/lnurlp/{username}").
+
+}
+