Issues in removing index.php in CodeIgniter 3

前端 未结 10 1363
灰色年华
灰色年华 2021-01-13 06:53

I want to access my URL\'s without index.php in CodeIgniter. Here is my Blog controller

class Blog extends CI_Controller {

    pub         


        
10条回答
  •  北海茫月
    2021-01-13 07:49

    in config.php

    $config['base_url'] = '';
    $config['index_page'] = '';
    

    in .htacess

    
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L] 
    
    

提交回复
热议问题