1

I would like to have

these urls as categories on my page:

http://example.com/en/articles        //for list of all
http://example.com/en/articles/cars    //for list of all cars articles
http://example.com/en/articles/nature  //for list of all nature acrticles
http://example.com/en/articles/sport    //for list of all sport articles

I am using i18n that is why I have also another links like:

http://example.com/fr/articles        //for list of all
http://example.com/fr/articles/cars    //for list of all cars articles
http://example.com/fr/articles/nature  //for list of all nature acrticles
http://example.com/fr/articles/sport    //for list of all sport articles

This is easy, I call a controller articles.php anf inside it I have functions cars, nature, sport and everything works well.

However, I want to have articles, no matter what category they are, like this:

http://example.com/en/articles/article-about-cars http://example.com/en/articles/article-about-nature

So, the category fell out from url when full article is view.

I am using i18n so my routes for this look like this:

$route[’^en/articles/(.+)$’] = “articles/show_full_article/$1”;
$route[’^fr/articles/(.+)$’] = “articles/show_full_article/$1”;

But this call everytime the function show_full_article, because it is in the 2nd segment.

So, I somehow need to rebuild the regex in:

$route[’^en/articles/(.+)$’] = “articles/show_full_article/$1”;

to exclude functions cars, nature and sport. I have only 3 categories so typing it manually is no big deal.

Please, if you know how to type the regex in routes.php to exclude these three categories , so codeigniter do not see them anymore as article names, let me know. I will appreciate it very much.

Thank you in advance for any advice.

user990916
  • 13
  • 2
  • possible duplicate of [How to negate specific word in regex?](http://stackoverflow.com/questions/1240275/how-to-negate-specific-word-in-regex) – mario Oct 12 '11 at 07:13

1 Answers1

0

You probably want to use a negative lookahead (?!...) for that.
In your case:

 $route['^en/articles/(?!(?:cars|nature|sport)$)(.+)$'] =

This ensures that the (.+) can not be one of those words. It needs to be wrapped in (?:..)$ so it also matches the end of the string, as otherwise the assertion would also block natureSMTHNG and similar longer terms.

mario
  • 144,265
  • 20
  • 237
  • 291