Welcome Guest, Not a member yet? Register   Sign In
Removing index.php in Codeigniter
#1

[eluser]faisal_memon[/eluser]
I am not able to remove index.php from the url's

http://sitename.com/index.php/controller...ethod-name

I don't want index.php in above url.

Explanation of what I want to achieve : Normally we access a view in codeigniter by
Code:
http://site-name/index.php/controller-name/method-name

I don't want to use index.php in any of my urls. I want url's to be like -
Code:
http://site-name/controller-name/method-name

Here is my .htaccess file

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>



Please help !!


Messages In This Thread
Removing index.php in Codeigniter - by El Forum - 04-09-2013, 09:04 AM
Removing index.php in Codeigniter - by El Forum - 04-09-2013, 11:57 AM
Removing index.php in Codeigniter - by El Forum - 04-10-2013, 03:38 AM
Removing index.php in Codeigniter - by El Forum - 04-10-2013, 07:44 AM
Removing index.php in Codeigniter - by El Forum - 04-10-2013, 09:16 AM
Removing index.php in Codeigniter - by El Forum - 04-10-2013, 09:16 AM
Removing index.php in Codeigniter - by El Forum - 04-10-2013, 10:06 AM
Removing index.php in Codeigniter - by El Forum - 04-10-2013, 11:03 AM
Removing index.php in Codeigniter - by El Forum - 04-10-2013, 09:11 PM
Removing index.php in Codeigniter - by El Forum - 04-11-2013, 01:29 AM
Removing index.php in Codeigniter - by El Forum - 04-11-2013, 01:37 AM
Removing index.php in Codeigniter - by El Forum - 04-11-2013, 03:49 AM
Removing index.php in Codeigniter - by El Forum - 04-13-2013, 08:11 AM
Removing index.php in Codeigniter - by El Forum - 04-15-2013, 06:51 PM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 06:21 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 07:05 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 09:18 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 09:31 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 09:41 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 09:45 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 09:51 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 09:56 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 10:02 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 10:15 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 10:30 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 10:35 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 10:55 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 11:27 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 11:48 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 11:54 AM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 12:00 PM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 03:17 PM
Removing index.php in Codeigniter - by El Forum - 04-16-2013, 03:35 PM
Removing index.php in Codeigniter - by El Forum - 04-17-2013, 06:20 PM
Removing index.php in Codeigniter - by El Forum - 04-18-2013, 03:04 AM
Removing index.php in Codeigniter - by El Forum - 04-25-2013, 08:03 AM
Removing index.php in Codeigniter - by El Forum - 04-27-2013, 02:12 AM
Removing index.php in Codeigniter - by El Forum - 02-06-2014, 04:23 AM
Removing index.php in Codeigniter - by El Forum - 03-03-2014, 06:47 PM
Removing index.php in Codeigniter - by El Forum - 07-26-2014, 10:37 AM
Removing index.php in Codeigniter - by El Forum - 08-07-2014, 12:48 AM
Removing index.php in Codeigniter - by El Forum - 10-09-2014, 08:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB