www.foo.com/Base/index.php/controller/method/ This is my url, I need to get only "controller/method" part out of it - is there any elegant way to achieve this?
parse_url($url, PHP_URL_PATH) This would be great, but it returns the whole "Base/index.php/controller/method" part.
explodethe result ?