php - Laravel 5 route using server -
i installed laravel 5 on ftp server. fine, main page enable. have problem routes. link calling route calling controller returning view. my link : <div class="logo"><a href="{{ route('accueil') }}"><img src="images/logo.png" alt=""></a></div> my route : route::get('/', [ 'as' => 'accueil', 'uses' => 'controllertest@accueil']); my controller : class controllertest extends controller { public function accueil() { return view('accueil'); } } but when element, can see : href="http://xx.xxx.xx.xxxc:/test/public/index.php" instead of href="http://xx.xxx.xx.xxx/test/public/index.php" it seems laravel mixing server's ip , localhost. can't find what's wrong. searched online solution, have issue. there .htaccess file in /public folder <ifmodule mod_rewrite.c> <ifmodule mod_negotiati...