]> git.mxchange.org Git - friendica.git/blobdiff - mod/p.php
notifications.php - move some template creation to the end of the file
[friendica.git] / mod / p.php
index 899b51116dacb43aaf74ab47a37b8f4b9429e12e..8da044e9323916e742b2b1bb24404fefe854acdf 100644 (file)
--- 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'));