I'm trying to pass an url to a controller.
http://something/index.php/api/http%3A%2F%2Fengadget.com
I get 404 Not Found error.
My route
Route::any("/api/{url}", "ApiController@parse");
How do I configure a route or controller to make it work?