/ Published in: PHP
Basta mudar a linha correspondente no arquivo de configuração do CI
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# NO ARQUIVO CONFIG.PHP $config['uri_protocol'] = "PATH_INFO"; # EXEMPLO NO CONTROLLER class Welcome extends Controller { function Welcome() { parent::Controller(); } function index() { $this->load->view('welcome_message'); } }