Codeigniter does not redirect

0

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>
    
asked by alexis basualto 15.12.2017 в 21:13
source

0 answers