| Before I start, I'm bad at writing english. sorry about it.
As I mentioned on subject, I want to exclude some links which are very similar
url with current url. But current url is should be included.
For example,
=====
Current url{should be included}:
www.test.com?post_id=0001
Other links from current url(should be excluded):
www.test.com?post_id=0002
www.test.com?post_id=0003
www.test.com?post_id=0004
...
=====
Problem is, even if I mentioned current url's post_id as "0001", it can be
various. so I can't make a rule like below or I can only use this for
"post_id=0001" which is useless.
=====
-*
+www.test.com?post_id=0001
=====
If I try to make "post_id" to has various value, then "other links from
current url" which should be excluded will also included. Useless again.
=====
-*
+www.test.com?post_id=*
=====
I read manuals from this homepage but no clue for me. Please help. | |