Get custom posts by segment of the URL

You can use a rewrite rule in your htaccess:

/for-rent/turkey/istanbul

RewriteRule ^for-rent/([^/]*)/([^/]*)$ yourpage.php?country=$1&city=$2 [L]

Than in your yourpage.php:

$country = $_REQUEST['country'];
$city = $_REQUEST['city'];