Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there anyway to turn this off? My application server uses strict parameter definitions and frankly all these extra parameters break my pages and the user gets a 404 for clicking a "liked" link.

And they are changing often (the passed extra parameters) so I would like to simply turn them off.

share|improve this question

1 Answer

The same thing happened with one of my websites and as i saw on Google - there's still many others. When i started to think about this problem, i discovered that the best solution would be a "301 redirect" to a canonical (original) address of a page or article.

As long as these _GET parameters don't make any conflicts with your website, you can still set a valid path for redirection, and that was my choice. In fact - every website or application could add these parameters, that's why i think - 404 in this case is a bad idea.

Visitors don't like to see these 404 pages anyway.

share|improve this answer
That's the problem. I do not control to show them 404's the application server does it since it's getting parameters that are not previously defined. – Olafur Tryggvason Sep 23 '12 at 13:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.