Welcome Guest, Not a member yet? Register   Sign In
Tutorial - Static Pages
#6

[eluser]desertprincess[/eluser]
Thanks...that fixed it. But I am stuck on the routes.php thing. Not sure if I should do this in routes.php or .htaccess with mod_rewrite. I am trying to rewrite/reroute the url www.myurl.com/pages/views/about to www.myurl.com/about without messing up other applications.
In routes.php I have:
Code:
$route['default_controller'] = 'news';
$route['404_override'] = '';

In .htaccess I have this one that I found:
Code:
<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /

    ### Canonicalize codeigniter URLs

    # If your default controller is something other than
    # "welcome" you should probably change this
    RewriteRule ^(pages(/index)?|index(\.php)?)/?$ / [L,R=301]
    RewriteRule ^(.*)/index/?$ $1 [L,R=301]

    # Removes trailing slashes (prevents SEO duplicate content issues)
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)/$ $1 [L,R=301]


    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>

<IfModule !mod_rewrite.c>

    # Without mod_rewrite, route 404's to the front controller
    ErrorDocument 404 /index.php

</IfModule>
Thanks!


Messages In This Thread
Tutorial - Static Pages - by El Forum - 01-24-2012, 08:18 PM
Tutorial - Static Pages - by El Forum - 01-25-2012, 11:50 AM
Tutorial - Static Pages - by El Forum - 01-25-2012, 03:17 PM
Tutorial - Static Pages - by El Forum - 01-25-2012, 03:29 PM
Tutorial - Static Pages - by El Forum - 01-25-2012, 04:55 PM
Tutorial - Static Pages - by El Forum - 02-20-2012, 10:56 AM
Tutorial - Static Pages - by El Forum - 02-20-2012, 11:40 AM
Tutorial - Static Pages - by El Forum - 02-20-2012, 02:24 PM
Tutorial - Static Pages - by El Forum - 02-20-2012, 09:48 PM
Tutorial - Static Pages - by El Forum - 03-27-2012, 10:11 AM
Tutorial - Static Pages - by El Forum - 07-19-2012, 08:39 PM
Tutorial - Static Pages - by El Forum - 03-27-2013, 02:22 PM
Tutorial - Static Pages - by El Forum - 06-27-2013, 05:33 AM
Tutorial - Static Pages - by El Forum - 07-05-2013, 02:59 PM



Theme © iAndrew 2016 - Forum software by © MyBB