gpt4 book ai didi

regex - 如何将子域与 gorilla mux 匹配

转载 作者:IT王子 更新时间:2023-10-29 01:42:07 27 4
gpt4 key购买 nike

我需要使用 gorilla mux 构建匹配两个子域(prefix.api.example.com 和 prefix.api.sandbox.example.com)的路由路由器。到目前为止,我有下面的正则表达式,但路由器根据请求返回 404。知道这是为什么吗?

router := mux.NewRouter()
route := router.Host(`prefix.api{_:(^$|^\.sandbox$)}.example.com`)

更多代码

package main

import(
"github.com/gorilla/mux"
"net/http"
)

type handler struct{}

func (_ handler)ServeHTTP(w http.ResponseWriter, r *http.Request){
w.Write([]byte("hello world"))
w.WriteHeader(200)

}
func main() {
router := mux.NewRouter().StrictSlash(true)
route := router.Host(`prefix.api{_:(^$|^\.sandbox$)}.example.com`)
route.Handler(handler{})
http.Handle("/", router)
panic(http.ListenAndServe(":80", nil))
}

要求:

$ curl prefix.api.sandbox.example.com/any -v
* Trying 127.0.0.1...
* Connected to prefix.api.sandbox.example.com (127.0.0.1) port 80 (#0)
> GET /some HTTP/1.1
> Host: prefix.api.sandbox.example.com
> User-Agent: curl/7.43.0
> Accept: */*
>
< HTTP/1.1 404 Not Found
< Content-Type: text/plain; charset=utf-8
< X-Content-Type-Options: nosniff
< Date: Wed, 01 Jun 2016 22:08:21 GMT
< Content-Length: 19
<
404 page not found
* Connection #0 to host prefix.api.sandbox.example.com left intact

最佳答案

^$用于匹配行首和行尾的元字符应该被删除,括号也可以。

route := router.Host(`prefix.api{_:|\.sandbox}.example.com`)`

我的主机文件:

○ grep prefix /etc/hosts
127.0.0.1 prefix.api.example.com
127.0.0.1 prefix.api.sandbox.example.com
127.0.0.1 prefix.api.xsandbox.example.com

给我以下内容:

○ curl prefix.api.example.com:8000
hello world%
○ curl prefix.api.sandbox.example.com:8000
hello world%
○ curl prefix.api.xsandbox.example.com:8000
404 page not found

更新:

这里是两个不同的 .Host() 生成的正则表达式的:

route :=  router.Host(`prefix.api{_:(^$|^\.sandbox$)}.example.com`)

正则表达式:^prefix\.api(?P<v0>(^$|^\.sandbox$))\.example\.com$

route := router.Host(`prefix.api{_:|\.sandbox}.example.com`)

正则表达式:^prefix\.api(?P<v0>|\.sandbox)\.example\.com$

  • 可以使用两个正则表达式的示例测试 here在 play.golang

关于regex - 如何将子域与 gorilla mux 匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37579525/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com