diff --git a/pkg/util/vhost/resource.go b/pkg/util/vhost/resource.go index a65e2997..3563a6ec 100644 --- a/pkg/util/vhost/resource.go +++ b/pkg/util/vhost/resource.go @@ -28,23 +28,70 @@ var NotFoundPagePath = "" const ( NotFound = ` - + -Not Found - + + + 404 - 未绑定域名 + -

The page you requested was not found.

-

Sorry, the page you are looking for is currently unavailable.
-Please try again later.

-

The server is powered by frp.

-

Faithfully yours, frp.

+
+

域名未绑定绑定

+

这个域名还没有绑定到任何隧道哦 (;д;)

+

可能是这些原因:

+ + +
` @@ -69,7 +116,7 @@ func getNotFoundPageContent() []byte { func NotFoundResponse() *http.Response { header := make(http.Header) - header.Set("server", "frp/"+version.Full()) + header.Set("server", version.Full()) header.Set("Content-Type", "text/html") content := getNotFoundPageContent()