我正在尝试设置一个过滤器以仅包含特定目录及其所有子目录的数据。
例如,我想包含dogs
目录和子目录中的数据
http://www.mysite.com/dogs/
http://www.mysite.com/dogs/index.htm
http://www.mysite.com/dogs/breeds.htm
http://www.mysite.com/dogs/puppies/
http://www.mysite.com/dogs/puppies/index.htm
http://www.mysite.com/dogs/puppies/care/
http://www.mysite.com/dogs/puppies/care/feeding.htm
创建新过滤器时,我认为我应该Pre-defined filter
选择Include only
traffic to the subdirectories
that begin with
子目录/dogs/
和not case sensitive
.
我只是对它应该是that begin with
还是有点困惑that are equal to
。我that begin with
在我的情况下使用是否正确,我的子目录值是否正确?
(我问是因为数据更新需要 24 小时,所以弄错会花费很多时间)