Welcome Guest, Not a member yet? Register   Sign In
Routes not working
#1

[eluser]otherjohn[/eluser]
Hi all, I cant seem to get my routes to work and think maybe I am missing something somewhere. Instead of going to the right page, it alway

I am using php5 on the server

Routes.php

Code:
$route['default_controller'] = "home";
$route['code-([0-9]{1})xx'] = "directorypage/$1";

A page /code-9xx/ should pull the DirectoryPage Control but instead pulls the default_controller.

Code:
class DirectoryPage extends Controller {

    function DirectoryPage()
    {
        parent::Controller();    
        
    }
    
    function index()
    { directory code here.... }

config.php
Code:
$config['index_page'] = "";

.htaccess
Code:
AddHandler application/x-httpd-php5 .php

<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]

    #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
    #This last condition enables access to the images and css folders, and the robots.txt file
    #Submitted by Michael Radlmaier (mradlmaier)
    RewriteCond $1 !^(index\.php|images|robots\.txt|css)
    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>


Messages In This Thread
Routes not working - by El Forum - 01-21-2009, 08:18 AM
Routes not working - by El Forum - 01-21-2009, 09:30 AM
Routes not working - by El Forum - 01-21-2009, 09:47 AM
Routes not working - by El Forum - 01-21-2009, 10:11 AM
Routes not working - by El Forum - 01-21-2009, 10:20 AM
Routes not working - by El Forum - 01-22-2009, 07:56 AM
Routes not working - by El Forum - 01-22-2009, 08:47 AM
Routes not working - by El Forum - 01-22-2009, 08:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB