Remove index.php from config.php file using htaccess in Codeigniter

- Make  .htaccess file and copy below code.
- Put .htaccess file to codeigniter or your project folder.
- For Ex.:
 

<IfModule mod_rewrite.c>
  RewriteEngine On
  #RewriteBase /

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^ index.php [QSA,L]
</IfModule>

Comments

Popular posts from this blog