我有以下网址
http://mysite/us/product.aspx
http://mysite/de/support.aspx
http://mysite/spaces/product-space
http://mysite/spaces/product-space/forums/this is my topic
http://mysite/spaces/product-space/forums/here is another topic
http://mysite/spaces/support-zone
http://mysite/spaces/support-zone/forums/yet another topic
http://mysite/spaces/internal
http://mysite/spaces/internal/forums/final topic
http://mysite/support/product/default.aspx
我想使用正则表达式添加一个抓取规则(这是与 SharePoint 2010 搜索相关的),它排除了不包含的 URL /forums/*
,只留下论坛主题 URL。
我想要一个排除 URL 的规则,../spaces/space1
但../spaces/space2
保留所有其他的 URL,包括包含/forums/
即这里是我想用正则表达式识别的结果(将在 SharePoint 搜索中的“排除”规则中使用):
http://mysite/spaces/product-space
http://mysite/spaces/support-zone
http://mysite/spaces/internal
使这些结果与正则表达式不匹配(因此不被此规则排除)
http://mysite/us/product.aspx
http://mysite/de/support.aspx
http://mysite/spaces/product-space/forums/this is my topic
http://mysite/spaces/product-space/forums/here is another topic
http://mysite/spaces/support-zone/forums/yet another topic
http://mysite/spaces/internal/forums/final topic
http://mysite/support/product/default.aspx
有人可以帮我吗?我整个早上都在看这个,我的头开始疼——我无法解释,我只是没有得到正则表达式结构。
谢谢
凯文