Try this url localhost/basicsite/index.php/site/home
For proper urls you have to include a htacces in your document root like
PHP Code:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
then you should be able to call your linke Try this url localhost/basicsite/site/home