Welcome Guest, Not a member yet? Register   Sign In
Removing index.php from URL's
#1

[eluser]drewdin[/eluser]
I am having the same issue as the poster a few below this one. I have been struggling with this issue the last two days, I want to remove index.php from my urls. If i use the url with index.php, everything works fine. for instance,
Code:
http://localhost/CodeIgniter/index.php/home/index
works fine but when i use
Code:
http://localhost/CodeIgniter/home/index
I get the following error.

Not Found

The requested URL /CodeIgniter/home/index was not found on this server.

Heres my setup:
Mac OSX
MAMP
www/CodeIgniter/applications

Heres my .htaccess in the root folder CodeIgniter

Code:
#Deny from all
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /CodeIgniter/

    #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} ^core.*
    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>
I have

Code:
$config['uri_protocol'] = 'AUTO';
but i have also tried QUERY_STRING and PATH_INFO and both didn’t work.

I have my index path setup

Code:
$config['index_page'] = '';
Any suggestions are welcomed, i am pulling all of my hair out! thanks
#2

[eluser]jairoh_[/eluser]
u can refer to this thread http://ellislab.com/forums/viewthread/234634/




Theme © iAndrew 2016 - Forum software by © MyBB