http://www.perlmonks.org?node_id=1014375


in reply to Re: Perlmonks 'Not logged in Error' - Proposal for fix (link render)
in thread Perlmonks 'Not logged in Error' - Proposal for fix

If such a redirection is implemented, then the destination page probably also needs to re-issue a cookie

If we did this server side then anyone landing on perlmonks.org would get redirected to www.perlmonks.org and no one would ever login on perlmonks.org. We could make this a 301 permanent redirect.

I tend to prefer to fix the rendering over changing the text that users have entered. It automatically fixes old nodes and getting it wrong in some way doesn't leave garbage saved that then has to be found and cleaned up.

The only problem with this could be the additional load on the server. For each page rendered the code will have to additionally check :

$node_contents =~ s/(http:\/\/)?(www\.)?(perlmonks\.)(org|net|com)\/(. +*)/$1www.perlmonks.$4\/$5/g;