Welcome Guest, Not a member yet? Register   Sign In
config route help
#6

[eluser]Cro_Crx[/eluser]
This line:

Code:
RewriteBase /

Should be the folder where your CI application is in. At the moment it's saying it's in the root directory. From your URI That doesn't seem to be the case. If your project is within the 'CodeIgniter' folder then change it to

Code:
RewriteBase /CodeIgniter

The two lines you've altered to have the CodeIgniter path should be changed back to what they were originally. Here's a full working config:

Code:
<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} ^system.*
    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>


Messages In This Thread
config route help - by El Forum - 01-09-2010, 03:27 AM
config route help - by El Forum - 01-09-2010, 05:07 AM
config route help - by El Forum - 01-09-2010, 02:11 PM
config route help - by El Forum - 01-09-2010, 07:34 PM
config route help - by El Forum - 01-10-2010, 01:22 AM
config route help - by El Forum - 01-10-2010, 04:02 AM
config route help - by El Forum - 01-10-2010, 08:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB