0

URL: localhost/studentlibrary2/index.php/front_side/home

remove from URL index.php/front_side

how to remove "index.php/front_side"?

meet
  • 404
  • 2
  • 11
  • 2
    Possible duplicate of [this](http://stackoverflow.com/questions/1445385/how-to-remove-index-php-in-codeigniters-path) – Henry Tran Nov 09 '15 at 10:14
  • No.i want to also remove subfolder from url.ex index.php/folder/controller/method. i want to remove folder frome URL – meet Nov 09 '15 at 10:20
  • See [this link](http://stackoverflow.com/questions/19116031/codeigniter-remove-directory-from-url) if it can help. Good luck. – Henry Tran Nov 09 '15 at 10:28

1 Answers1

0

put this code in your htaccess file.

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]