Articles → PHP CODEIGNITER → Remove Index.Php In Codeigniter
Remove Index.Php In Codeigniter
Index.Php
Click to Enlarge
Remove Index.Php
- Open a notepad.
- Write the following code.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
- Save the file as ".htaccess" on the root folder.
Output
Click to Enlarge