X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fp.php;h=8da044e9323916e742b2b1bb24404fefe854acdf;hb=0c9cc29a51941eb572bf16fd5489d0947d47d033;hp=899b51116dacb43aaf74ab47a37b8f4b9429e12e;hpb=6f203b0a7533ae28e241bb22f4c140982396fadb;p=friendica.git diff --git a/mod/p.php b/mod/p.php index 899b51116d..8da044e932 100644 --- a/mod/p.php +++ b/mod/p.php @@ -31,11 +31,13 @@ function p_init($a){ $parts = parse_url($r[0]["author-link"]); $host = $parts["scheme"]."://".$parts["host"]; - $location = $host."/p/".urlencode($guid).".xml"; + if (normalise_link($host) != normalise_link(App::get_baseurl())) { + $location = $host."/p/".urlencode($guid).".xml"; - header("HTTP/1.1 301 Moved Permanently"); - header("Location:".$location); - killme(); + header("HTTP/1.1 301 Moved Permanently"); + header("Location:".$location); + killme(); + } } header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));