我正在尝试匹配一个 url 的子域,使用http://([a-z0-9]*.)?example.com/.*
它非常适合这些情况。
http://example.com/index.html
http://test.example.com/index.html
http://test1.example.com/index.html
http://www.example.com/122/index.html
但问题是它也与此 URL 匹配。 http://www.test.com/?q=http://example.com/index.html
如果具有另一个域的 URL 具有匹配的路径中的 URL。任何人都可以告诉我如何仅匹配当前域。获取主机将起作用,但我需要匹配完整的 URL。