3

My question is pretty straightforward I want to exclude from proxy everything but this 2 URLS, just want to see the traffic of 1 site.

http://www.timetosa.com and https://www.timetosa.com

This is the REG I have inserted in the Exclude from Proxy section without success:

\Q!(http?://www.timetosa.com/)\E.*
aDoN
  • 1,877
  • 4
  • 39
  • 55

3 Answers3

4

I came across this exact problem and this is the Regex that worked for me:

^(?:(?!http:\/\/localhost:3000).*).$

Where http://localhost:3000 is the only address I wanted included.

Alex Urcioli
  • 2,883
  • 3
  • 11
  • 17
0

Try the following

\Qhttp?://www.timetosa.com\E.*

or

\Qhttp://www.timetosa.com\E.*
Janitha Tennakoon
  • 856
  • 11
  • 40
  • But where¿? by doing that I include only timetosa, but I need to exclude eveything that is not timetosa, because as far as I know there is a: only include – aDoN Feb 12 '15 at 11:15
  • In session properties there is a option called Exclude from proxy – Janitha Tennakoon Feb 12 '15 at 11:33
0

Simply put it as \Qhttp\Es?\Q://www.timetosa.com/\E.*.

DarkLighting
  • 309
  • 2
  • 10