Hello,

Is it a good (or bad) idea to redirect misspelled URL? For example, in my logs, I see requests such as

domain.ext/path/blue-widget/check%20about%20blue%20widget

the right URL being :

domain.ext/path/blue-widget/

This is the result of someone making a mistake while creating a link to my site. I have several like that, looks like lot of people are making mistakes :-/

Since all request are processed by a .php script , I am able to add a piece of code, to analyses the URL and redirect to the "right" URL. Good or bad idea?

I am asking because it ends to be "soft 404".