-1
routes.phpの404ページが見つかりませんCodeIgniterのURLを - PHP
$route['default_controller'] = 'Index';
config.phpの
$config['base_url'] = 'http://www.tabaneshahr.com/';
$config['index_page'] = '';
コントローラ/ index.phpを:
class Index extends CI_Controller {
public function index()
{
$data = array();
//$this->blade->render('index' , $data);
$this->load->view('welcome_message');
}
}
私は薄くk個のすべてがOKですが、このURLは機能しませんしません:あなたのルートで
index.phpの「私は私のルートを変更しましたが、それはdidnの仕事。 –
@ S.M_Emamian異なるファイルとクラスの名前を付けてみてください – user4419336
は問題ありません。 ;-) –