Route::group(array('domain' => 'api.domain.com'), function()
{
Route::get('/','TwitterController@index');
Route::get('/gettweets','TwitterController@getTweets');
Route::get('/viewtweets','TwitterController@viewTweets');
Route::get('/viewvideos','TwitterController@viewVideos');
});
This is my routes.php
I am calling this /gettweets route but it says /gettweets is not found on server. Using godaddy linux shared.
I am only able to call / requests.
How can I make laravel read this routes.