Here is an example (It's in Laravel 4)..
I want my url like this http://example.com/home/SiteLocation 
and in routes.php I defined Route::get('home/SiteLocation','HomeController@Functionname');
My point is,
- Is it possible to use like this - SiteLocation(lower case and upper case mix) as url ?
- If yes, how to define function in controller for the same ? 
 
     
     
    