Joel Stachowicz wrote... Hi Stewart, Using regex is probably the way to
go, but this use case is a bit more complex than it may first appear.
For instance, the match probably needs to take into account situations
like variations in protocol (http vs https), the actual homepage file
name (index.jsp), query params (?var1=1&var2=1), etc. in addition to
simply excluding alternate filenames like /page.html at the end of the
path. A simple match would be ^(https?:\/\/)?www.landsend.com\/?$ Use
the reg...