Getting rid about &sid= in urls ?
|
Sep. 01, 2009, 07:33 PM
Post: #1
|
|||
|
|||
Getting rid about &sid= in urls ?
Hi,
Even when you have cookies disabled, most forums can't stop tracking visitors, when they cannot plant a cookie on your system they add &sid=<string of chars and numerics> after your links. Is there a header filter which could remove that part from the requested url please ? |
|||
Sep. 01, 2009, 08:52 PM
Post: #2
|
|||
|
|||
RE: Getting rid about &sid= in urls ?
here's one for Google News...
Code: Name = "Google News remove id string from off-site links Apr16,2007 {JJoe}" |
|||
Sep. 02, 2009, 04:48 AM
Post: #3
|
|||
|
|||
RE: Getting rid about &sid= in urls ?
(Sep. 01, 2009 07:33 PM)Toppy Wrote: Is there a header filter I don't remember all the specifics of the '&' or the '<string of chars and numerics>'. You could start with Code: [HTTP headers] OR Sidki's set allows you to handle this in IncludeExclude-U. I think you could add something like Code: \0\&sid=[^&]+\1&$JUMP(http://\0\1) This assumes all HTTP and is untested. HTH |
|||
Sep. 02, 2009, 01:16 PM
Post: #4
|
|||
|
|||
RE: Getting rid about &sid= in urls ? | |||
Oct. 04, 2009, 05:34 AM
(This post was last modified: Oct. 11, 2009 02:26 PM by Mirny.)
Post: #5
|
|||
|
|||
RE: Getting rid about &sid= in urls ?
Hi,
yet another possible solution is the filter by chAlx named "Delete forum IDs from links [ALX]" original topic (in russian). It's pretty smart at parsing query strings and deleting unwanted params, such as "sid" , "phpsessid" etc. whatever you want, based on list. More to it, if the query string happens to contain several params that you don't want to be there, the filter deletes them all at once. If you want to get rid of param with some particular value(s) just specify it in SIDList.txt. Also it keeps track of issues such as whether removed param was the last one in the query string, if so then removes trailing "?" here it is: Code: [Patterns] content of my SIDList.txt (for the sake of example): Code: # List of URL params to be deleted from links (NOADDURL) |
|||
« Next Oldest | Next Newest »
|