Welcome Guest, Not a member yet? Register   Sign In
routes not working
#7

[eluser]learning_php[/eluser]
Hi,

This is my .htaccess file
Code:
<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteBase /
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$./index.php/$1 [QSA,NC,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.

  ErrorDocument 404 /index.php
</IfModule>

and my routes are now:
Code:
$route['default_controller'] = "homepage";
$route[''] = "homepage";


$route['info'] = 'homepage/Info';
$route['Gifts'] = 'homepage/Gifts';
$route['gallery'] = "gallery/index";
$route['register'] = "homepage/register";
$route['Church'] = "direction/direction";
$route['JockeyClub'] = "direction1/direction1";
$route['images'] = "Dashboard/index";
$route['scaffolding_trigger'] = " ";

and i am linking to the pages like:
Code:
<li><a href=''>Homepage</a></li>
    <li><a href='homepage/Info'>Information</a></li>
    <li><a href='homepage/Gifts'>Gifts</a></li>
    <li><a href='gallery/index'>Gallery</a></li>

and i get a 404 error????


Messages In This Thread
routes not working - by El Forum - 05-07-2009, 02:15 PM
routes not working - by El Forum - 05-07-2009, 02:29 PM
routes not working - by El Forum - 05-07-2009, 02:37 PM
routes not working - by El Forum - 05-07-2009, 02:49 PM
routes not working - by El Forum - 05-07-2009, 03:17 PM
routes not working - by El Forum - 05-07-2009, 03:26 PM
routes not working - by El Forum - 05-08-2009, 01:42 AM
routes not working - by El Forum - 05-08-2009, 01:52 AM
routes not working - by El Forum - 05-08-2009, 01:55 AM
routes not working - by El Forum - 05-08-2009, 03:02 AM
routes not working - by El Forum - 05-08-2009, 03:07 AM
routes not working - by El Forum - 05-08-2009, 03:09 AM
routes not working - by El Forum - 05-08-2009, 03:11 AM
routes not working - by El Forum - 05-08-2009, 03:17 AM
routes not working - by El Forum - 05-08-2009, 03:20 AM
routes not working - by El Forum - 05-08-2009, 03:26 AM
routes not working - by El Forum - 05-08-2009, 04:26 AM
routes not working - by El Forum - 05-08-2009, 05:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB