From 114ab0988e20ac6be39ad363ff897a1a3b85e565 Mon Sep 17 00:00:00 2001
From: Razican By default, URLs in CodeIgniter are designed to be search-engine and human friendly. Rather than using the standard "query string"
+ By default, URLs in CodeIgniter are designed to be search-engine and human friendly. Rather than using the standard "query string"
approach to URLs that is synonymous with dynamic systems, CodeIgniter uses a segment-based approach: The URI Class and the URL Helper
-contain functions that make it easy to work with your URI data. In addition, your URLs can be remapped using the
+contain functions that make it easy to work with your URI data. In addition, your URLs can be remapped using the
URI Routing feature for more flexibility.CodeIgniter URLs
-example.com/news/article/my_article
@@ -78,7 +78,7 @@ approach to URLs that is synonymous with dynamic systems, CodeIgniter uses a
In your config/config.php file you can specify a suffix that will be added to all URLs generated -by CodeIgniter. For example, if a URL is this:
+by CodeIgniter. For example, if a URL is this:example.com/index.php/products/view/shoes
@@ -125,7 +125,7 @@ open your config file you'll see these items:
$config['controller_trigger'] = 'c';If you change "enable_query_strings" to TRUE this feature will become active. Your controllers and functions will then +
If you change "enable_query_strings" to TRUE this feature will become active. Your controllers and functions will then be accessible using the "trigger" words you've set to invoke your controllers and methods:
index.php?c=controller&m=method
--
cgit v1.2.3-24-g4f1b