Commit 704aa566 by Alexander Makarov

Merge pull request #6110 from softark/docs-guide-fix-2014-11-19

docs-guide-runtime-routing.md grammar fix [ci skip]
parents 8341a400 df785fc2
......@@ -16,7 +16,7 @@ a route and the associated query parameters and the [[yii\web\UrlManager::create
create a URL from a given route and its associated query parameters.
By configuring the `urlManager` component in the application configuration, you can let your application
to recognize arbitrary URL formats without modifying your existing application code. For example, you can
recognize arbitrary URL formats without modifying your existing application code. For example, you can
use the following code to create a URL for the `post/view` action:
```php
......@@ -444,8 +444,8 @@ will parse the URL `http://en.example.com/posts` into the route `post/index` and
### URL Suffixes <a name="url-suffixes"></a>
You may want to add suffixes to the URLs for various purposes. For example, you may add `.html` to the URLs so that they
look like URLs for static HTML pages; you may also add `.json` to the URLs to indicate that the expected content type
of the response to the URLs. You can achieve this goal by configuring the [[yii\web\UrlManager::suffix]] property like
look like URLs for static HTML pages; you may also add `.json` to the URLs to indicate the expected content type
of the response. You can achieve this goal by configuring the [[yii\web\UrlManager::suffix]] property like
the following in the application configuration:
```php
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment