I'm implementing a slug system for my website at the moment. I plan to redirect invalid slugs to the correct on that is stored in the database. E.g.
http://example.com/11/wrong-slug
Hit db, check if 11's slug is wrong-slug if not do 301 redirect
http://example.com/11/right-slug
Detect 301 and inform user that they followed an invalid link
Is it possible to identify the 301 redirect preferably using PHP so I can ask the user to update there bookmark etc.
Thanks, Jamie.
A solution might be to check the
$_SERVER['HTTP_REFERER']
in the "new" page : if it is set and corresponds to the "old" page, it's probably because your user has been redirected -- which means you might want to display your message.But note that the Referer is sent by the user's browser, and can be either disabled or forged -- so it's OK to use it to enhance the experience, but you must not rely on it for anything critical.
Alternatively you could append a GET parameter to your url (if you don't mind that), and check for it in your PHP script. Something like:
On the same note you can use the session or cookies, but you must take care to remove them after detection.
Found a working solution:
Check session, if $_SESSION['INVALID_SLUG'] exists display message then unset session
else
Any feedback? I realise this will not detect a 301 redirect itself more detect a trigger assosiated with the redirect.
Thanks for all the help.
I think the only useful option is to use a cookie.
When a URL with the wrong slug is requested, set a cookie for that URL without the slug:
Then test if such a cookie exists and display your message:
Several solutions come to mind:
You could try with get_headers()ah no, it dispatches a request to the URL, which is not what you wantSince you are redirecting and testing for the redirect from the same machine anyway, you could simply write a message about the wrong slug into the user's session and display it the next time the view template is rendered. Many frameworks have a flash messenger component, that allow you do that easily, e.g. with Zend Framework you would use the following code in your controller action
$flashMessenger = $this->_helper->getHelper('FlashMessenger'); $flashMessenger->addMessage('We did something in the last request');
Instead of redirecting immediately when a wrong slug is found, you just render a View template that tells your user about the wrong slug and then use a meta or javascript redirect from the template. Optionally, you'd also write a plain link with the right slug to the template.
And finally, you could also inject a custom header into the redirect via header(), which can then be read from your script.won't work either, because they will be lost once the browser got the redirect from the server