if URL variable is missing or does not match the criteria
How should I handle blank space on the page when URL variable is missing or does not match the criteria? Should I simply display a message where missing content should be, say
Oops! The article you were looking for could not be found, do something with cferror or redirect to 404 page. Which way is SE friendly?
I have page http://www.website.com/news/title.cfm?news=whatever-news
with URL rewrite
http://www.website.com/news/whatever-news
I know this can only happen if article is deleted form DB or if someone insert or delete something within URL variable, for example
http://www.website.com/news/title.cfm?news=whatever----TEST JUST FOR FUN-news
in which case it will not match the criteria and will display nothing, 404 like content.
How should I handle this?
