CodeIgniter removing index.php not working

后端 未结 4 733
悲&欢浪女
悲&欢浪女 2021-01-15 04:12

I\'m using Ubuntu 13 with the following setup for a local codeigniter site.

Apache/2.4.6 (Ubuntu)
5.5.3-1ubuntu2.2 
\'CI_VERSION\', \'2.1.2\'
4条回答
  •  北恋
    北恋 (楼主)
    2021-01-15 04:56

    copy following code to .htaccess in your root folder

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

    This works fine for me to remove index.php in CodeIgniter.

提交回复
热议问题