php - Redirecting to a controller from a view in CodeIgniter -


i trying redirect controller @ click event of button. controller file practicetest.php. has index function redirects view there. unfortunately, keep getting 404 not found error.

the relevant code:

<input style='position: absolute; right: 0;' type="button" id='rounded_practice' value="begin practice" onclick="location.href='/practicetest'"> 

any spotting may have missed appreciated.

the url wrong.if click on button see redirecting wrong url.you should use full url instead of relative url.as using ci can try way(assumed practicetest 1 of controller name)

onclick="location.href='<?php echo site_url('practicetest');?>'">