X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fp.php;h=8da044e9323916e742b2b1bb24404fefe854acdf;hb=0c9cc29a51941eb572bf16fd5489d0947d47d033;hp=df904372add3165ecc3315acd67927337378865a;hpb=53412236173759ac0e307479bd13024d8d318893;p=friendica.git diff --git a/mod/p.php b/mod/p.php index df904372ad..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/".$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'));