Issues in removing index.php in CodeIgniter 3

前端 未结 10 1466
灰色年华
灰色年华 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:34

    Enable mod_rewrite restart your apache server and in your .htaccess

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

提交回复
热议问题