Issues in removing index.php in CodeIgniter 3

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

    My Codeigniter version is 3.1.11 I'm trying all types of code in htaccess but that does not work then I was found this code.

    Place the .htaccess file in the project folder like this: htdocs/your_project/.htaccess Try this new code for .htaccess:

    RewriteEngine on 
    RewriteBase /your-project-directory-name/ 
    RewriteCond $1 !^(index.php|resources|robots.txt) 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule ^(.*)$ index.php/$1 [L,QSA]
    

提交回复
热议问题