This Link only sends me to localhost of xammp , I feel that the address is:
link
My driver:
<?php
class Link extends CI_Controller {
public function index()
{
echo "Cosme Fulanito";
}
}
My Home:
<!DOCTYPE html>
<html>
<head>
<title>Pagina Principal</title>
</head>
<body>
<h1>Pagina Home</h1>
<a href="<?= base_url('link') ?>">Link</a>
</body>
</html>