codeigniter: Remove index.php not working

后端 未结 3 1553
囚心锁ツ
囚心锁ツ 2021-01-14 06:39

I am trying to remove index.php from url. But its not working!

Using ubuntu 12.04 ( LAMP).

CodeIgniter_2.1.2

.htaccess file



        
3条回答
  •  鱼传尺愫
    2021-01-14 07:44

    Htaccess:

    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* index.php/$0 [PT,L]
    

    And in your applications/config/config.php

    $config['base_url'] = 'http://www.yourwebsite.com'; //url to your project
    $config['index_page'] = ''; //Needs to be empty
    

提交回复
热议问题