CodeIgniter removing index.php from url

前端 未结 30 1407
[愿得一人]
[愿得一人] 2020-11-21 11:51

My current urls look like this [mysite]index.php/[rest of the slug].
I want to strip index.php from these urls.

mod_rewrite

30条回答
  •  借酒劲吻你
    2020-11-21 12:21

    1. make .htaccess file and put this code

       RewriteEngine on
       RewriteCond $1 !^(index\.php|resources|robots\.txt)
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule ^(.*)$ index.php/$1 [L,QSA] 
      
    2. change

      $config['index_page'] = ''; 
      

    remove index.php present in config.php file

    1. rewrite on from your server.

提交回复
热议问题