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

[eluser]dadamssg[/eluser]
i did that and instead of having urls like this

mysite.com/CodeIgniter/index.php/main/sports

it was like this with a 404

mysite.com/CodeIgniter/main/sports

i have this mod_rewrite in my .htaccess file
Quote:<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} ^codeigniter/system.*
RewriteRule ^(.*)$ /CodeIgniter/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 ^(.*)$ /CodeIgniter/index.php?/$1 [L]
</IfModule>

and my base url in my config file is

$config['base_url'] = "http://mysite.com/CodeIgniter/";


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