私は次のURLを持っています
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
を含まないURLを除外し/forums/*
、フォーラムトピックURLのみを残すRegExを使用してクロールルール(これはSharePoint 2010検索関連)を追加したいと思います。
のURLを除外し、他のすべてのURLをそのままに../spaces/space1
しておくルールが必要です。../spaces/space2
/forums/
つまり、正規表現で識別したい結果は次のとおりです(SharePoint Searchの「除外」ルールで使用されます)。
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
誰かが私を助けることができますか?私は今朝ずっとこれを見ていました、そして私の頭は傷つき始めています-私はそれを説明することができません、私はただ正規表現構造を得ません。
ありがとう
ケビン