I have pages with structure like this some_page?id=123
Sometimes records are deleted, but those pages still get visited by people and search engines. One problem is that I have a php script and no MVC structure, so I have to query the DB all on the same page before I find out that the user record does not exist.
Should I return a 404 in that case? Or what is best practice?
Thanks!