Welcome Guest, Not a member yet? Register   Sign In
Help set up routes
#1

Hello,

I have a URL like:

* http://site.ru/news/apple/videos/
http://site.ru/news/apple/pictures/
http://site.ru/news/apple/reviews/

And set up routes:
$route['([^.]+)/?'] = 'structure/view/$1';

According to this rule, I get only the first section: news.
How do I get the last instead of the first section, like:
* videos
* pictures
* reviews

Thank's
Reply
#2

my .htaccess file:

AddDefaultCharset UTF-8

Options +FollowSymLinks
Options -Indexes

DirectoryIndex index.php

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L,QSA]
Reply




Theme © iAndrew 2016 - Forum software by © MyBB