html - My links are not valid 404 - but they work -


i'm making html email, , both mail-tester.com , apsis (used mailsending) says links not valid. mail-tester.com says it's due 404 error.

but links seems work perfectly, , there no redirects on landing pages. i've tried without "http://www." without "http://" , "https://www." nothing works.

one of links are: http://www.pieces.com/ch/de/pc/taschen/

does know what's going on?

i ran quick test , shows http://www.pieces.com/ch/de/pc/taschen/ redirecting , goes in redirection loop.

i used php code below run test , displays 302 status.

<?php  $ch = curl_init();  curl_setopt($ch, curlopt_url, 'http://www.pieces.com/ch/de/pc/taschen/'); curl_setopt($ch, curlopt_returntransfer, 1); curl_setopt($ch, curlopt_header, 1);  $response = curl_exec($ch);  curl_close($ch);  var_dump($response); 

output above code

string(1482) "http/1.1 302 found date: thu, 22 sep 2016 12:08:19 gmt content-type: text/html;charset=utf-8 transfer-encoding: chunked connection: keep-alive set-cookie: __cfduid=deab085ac358b1274491824dc5d66f1fa1474546098; expires=fri, 22-sep-17 12:08:18 gmt; path=/; domain=.pieces.com; httponly set-cookie: dwac_bc082iaaitywmaaadqlmyuvd5g=lujztuywqgllxq-b8prhfjq09pk656tca_c%3d|dw-only|||eur|false|etc%2futc|true; path=/ set-cookie: cqcid=abw4tbokf50j6nfqtag61v8hut; path=/ set-cookie: sid=lujztuywqgllxq-b8prhfjq09p"... 

also see screenshot below shows 3 302 status before getting url.

redirection loop so, looks url indeed invalid. goes redirection loop. should talk server guy resolve issue. let know if helped resolve issue or not.


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -