https://www.domain.ru/test-url
http://www.domain.ru/test-url
https://domain.ru/test-url
http://domain.ru/test-url
https://localhost/test-url
http://localhost/test-url
/\/([^\/]+)$/
<?php
$url = 'https://www.domain.ru/test-url';
// using preg_match
preg_match('/(\/[^\/]+)$/', $url, $matches);
echo $matches[1].PHP_EOL;
// using parse_url
echo parse_url($url, PHP_URL_PATH);