Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题很简单,我想从代理中排除除这 2 个 URL 之外的所有内容,只想查看 1 个站点的流量。
http://www.timetosa.com和https://www.timetosa.com
http://www.timetosa.com
https://www.timetosa.com
这是我在“从代理中排除”部分插入但未成功的 REG:
\Q!(http?://www.timetosa.com/)\E.*
我遇到了这个确切的问题,这是对我有用的正则表达式:
^(?:(?!http:\/\/localhost:3000).*).$
其中http://localhost:3000是我想要包含的唯一地址。
尝试以下
\Qhttp?://www.timetosa.com\E.*
或者
\Qhttp://www.timetosa.com\E.*
简单的说为\Qhttp\Es?\Q://www.timetosa.com/\E.*。
\Qhttp\Es?\Q://www.timetosa.com/\E.*