Removing index.php from url in codeigniter
Follow the steps given below to remove index.php segment from the url of codeigniter.
- search for zinfomatic in github and use their .htaccess file
- or create a new file inside the CodeIgniter folder (outside the application folder).
- name the new file as .htaccess
- paste the following code inside the .htaccess file.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Now remove the index.php segment from your url.
⇐Prev
Next⇒
Comments
Post a Comment