When i use URL(http://localhost/ci_framework/Temp).It successfully loaded my template.
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Temp extends CI_Controller {
public function index()
{
$this->load->view('index');
}
public function forward(){
$this->load->view('index');
}
}
?>
But when load same view(index) by adding their method name at the controller(http://localhost/ci_framework/Temp/forward). It fails to load Bootstrap files,java script files.
I have wasted 3 hours.Tell friends about possible solutions.Looking forward..