Posted - 05/12/2021 : 19:14:53
Hi Charles, I am guessing your rewrite is basically treating anything after the last slash like a querystring. Basically the following two urls will render the same page if the querystring is meaningless.
www.somesite.com/somepage.asp?thisissome=querysting www.somesite.com/somepage.asp?thisissome=otherquerysting
Both will just render this page www.somesite.com/somepage.asp and if the querstring is meaningless, you just get the same page for both...
Another example is like this www.somesite.com/somepage.asp?thisissome=querystring&this-is-some=meaningless-querystring
So the first keyed pair (thisissome=querystring) is valid and the second (this-is-some=meaningless-querystring) is just added junk, you get the www.somesite.com/somepage.asp?thisissome=querystring page with no 404 error.
I suspect this is basically what's happening. The bigger issue though, is were are these URL's with the added junk coming from, causing S/E's to index them (affecting your page ranking and SEO)?
Thanks, David
|