trim path levels in the relative links

This commit is contained in:
ghost 2023-04-08 19:14:04 +03:00
parent 71a3e7dd0e
commit b3c668706b

View File

@ -126,7 +126,7 @@ foreach ($db->getCrawlQueue(CRAWL_PAGE_LIMIT, time() - CRAWL_PAGE_SECONDS_OFFSET
$href = $queueHostPage->scheme . '://' . $href = $queueHostPage->scheme . '://' .
$queueHostPage->name . $queueHostPage->name .
($queueHostPage->port ? ':' . $queueHostPage->port : '') . ($queueHostPage->port ? ':' . $queueHostPage->port : '') .
'/' . ltrim($href, '/'); '/' . ltrim(str_replace(['./', '../'], '', $href), '/');
} }
// Validate formatted link // Validate formatted link