I have created register and login buttons, when I click register or Login button it gets a URL like this (http://[::1]/udemy/User/registration
). it should come like this only (http://localhost/udemy/User/registration) I'm new in CodeIgniter please someone helps me make this proper URL.
Below my HTML view code:
<a href="<?= base_url('User/registration') ?>" class="btn btn-info my-2 my-sm-0">Register</a>
<a href="<?= base_url('User/login') ?>" class="btn btn-success my-2 my-sm-0">Login</a>