I’ve created a problem for myself to enter a url in my newsletter, that is transformed to url by EE. Now this new link is sent as an email to clients….
have a look: http://www.phx.eu/?URL=http://www.phx.eu/#/batterij
it should be plain http://www.phx.eu/#/batterij
Any way to create a (header) redirect to go to my page anyway ? (I cannot change the url since it’s in their inboxes already)
= RESOLVED =
changed the index.php to always load the external URL:
$str = "<html>\n<head>\n<title>Redirect</title>\n".
'<meta http-equiv="refresh" content="0; URL='.$_GET['URL'].'">'.
"\n</head>\n<body>\n</body>\n</html>";
exit($str);