News article pages 404 |
[eluser]stuartr[/eluser]
With reference to the issue with spaces in the slug name, I also hit this when creating the initial articles as the tutorial wasn't clear that the slug would be used to create the URL and hence would be sensitive to certain characters such as a space or an apostrophe. That being said, when you reach the section on creating the news article the set_news function created in the model takes care of this with the assistance of the URL helper. Code: $slug = url_title($this->input->post('title'), 'dash', TRUE); The problem I am trying to get my head around at the moment is the link to the news article, assuming I end the URL without a trailing slash the link is built as ci_test/index.php/news/slug1, whereas if I call the page with a trailing slash I get ci_test/index.php/news/news/slug1. e.g. http://ci_test/index.php/news (no trailing slash) builds links as http://ci_test/index.php/news/slug1 while http://ci_test/index.php/news/ builds links as http://ci_test/index.php/news/news/slug1 While I entirely understand the logic of what is happening with the relative URL, I am new to working with segmented URLs and CI, and am therefore still trying to get my head around the best approach to managing this. I can get it to work with an additional route Code: $route['news/news/(:any)'] = 'news/view/$1'; |
Messages In This Thread |
News article pages 404 - by El Forum - 02-26-2013, 10:00 AM
News article pages 404 - by El Forum - 02-26-2013, 12:15 PM
News article pages 404 - by El Forum - 02-26-2013, 01:12 PM
News article pages 404 - by El Forum - 02-26-2013, 03:07 PM
News article pages 404 - by El Forum - 02-26-2013, 04:21 PM
News article pages 404 - by El Forum - 02-27-2013, 12:19 AM
News article pages 404 - by El Forum - 02-27-2013, 03:20 AM
News article pages 404 - by El Forum - 02-27-2013, 03:38 AM
News article pages 404 - by El Forum - 02-27-2013, 03:45 AM
News article pages 404 - by El Forum - 02-27-2013, 02:17 PM
News article pages 404 - by El Forum - 02-27-2013, 02:47 PM
News article pages 404 - by El Forum - 02-27-2013, 03:16 PM
News article pages 404 - by El Forum - 02-27-2013, 04:22 PM
News article pages 404 - by El Forum - 02-27-2013, 06:44 PM
News article pages 404 - by El Forum - 02-28-2013, 01:54 AM
News article pages 404 - by El Forum - 02-28-2013, 02:43 PM
News article pages 404 - by El Forum - 02-28-2013, 04:07 PM
News article pages 404 - by El Forum - 02-28-2013, 06:22 PM
News article pages 404 - by El Forum - 03-14-2013, 04:06 PM
News article pages 404 - by El Forum - 03-14-2013, 05:21 PM
News article pages 404 - by El Forum - 03-15-2013, 07:31 AM
News article pages 404 - by El Forum - 03-15-2013, 09:57 AM
News article pages 404 - by El Forum - 03-15-2013, 10:56 AM
News article pages 404 - by El Forum - 03-15-2013, 12:39 PM
News article pages 404 - by El Forum - 03-15-2013, 10:57 PM
News article pages 404 - by El Forum - 03-16-2013, 02:40 AM
|