From 4b9c62980599228f070b401c7673dce8085b0c61 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Fri, 1 Jul 2011 17:40:48 -0500 Subject: backed out 648b42a75739, which was a NON-trivial whitespace commit. It broke the Typography class's string replacements, for instance --- user_guide/general/urls.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'user_guide/general/urls.html') diff --git a/user_guide/general/urls.html b/user_guide/general/urls.html index b975b701f..421f51301 100644 --- a/user_guide/general/urls.html +++ b/user_guide/general/urls.html @@ -58,7 +58,7 @@ URLS

CodeIgniter URLs

-

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:

example.com/news/article/my_article @@ -78,7 +78,7 @@ approach to URLs that is synonymous with dynamic systems, CodeIgniter uses a

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.

@@ -103,7 +103,7 @@ a request for your index.php file.

Adding a URL Suffix

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';
$config['function_trigger'] = 'm'; -

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