Remove index.php in codeigniter 2.1.0

前端 未结 9 1765
渐次进展
渐次进展 2020-11-29 05:10

I tried everything on google related to removing index.php from URL in codeigniter but no solution worked for me I am using codeigniter version 2.1.0 How I can remove index

9条回答
  •  余生分开走
    2020-11-29 05:25

    You just need to create .htaccess file in project folder and write: RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    
    # Rewrite all other URLs to index.php/URL
    RewriteRule ^(.*)$ index.php?url=$1 [PT,L] 
    
    
    
     ErrorDocument 404 index.php
     
    
     And You don't need to define in base_url in config file:
     $config['base_url'] = '';// blank it.
    
     I hope it will work perfectly ...
    

提交回复
热议问题