|
Your response to my first question rang the bell that answered the second one. This is something good to make note of.
You say Sunrise XP always rewrites first, then filters. The rewrite I am using appends "&print=1" to the end of the links, so that I will get the printer friendly version.
The link I wanted to exclude was the only one on the page that ended with "page=1", hence I tried to use the ".*page=1" pattern to match it. But if the rewrite runs first, the link would have been rewritten to end with "page=1&print=1", which does not match the pattern ".*page=1". It does, of course, match the pattern ".*listings\.asp.*" both before and after it is rewritten, because of the ".*" at the end.
Case closed! Thanks, Laurens
|