Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
ee5c14fa
Commit
ee5c14fa
authored
Jan 02, 2014
by
Mark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs fixed
parent
13e833b7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
url.md
docs/guide/url.md
+2
-2
No files found.
docs/guide/url.md
View file @
ee5c14fa
...
@@ -37,8 +37,8 @@ echo \Yii::$app->urlManager->createAbsoluteUrl('blog/post/index');
...
@@ -37,8 +37,8 @@ echo \Yii::$app->urlManager->createAbsoluteUrl('blog/post/index');
The exact format of the outputted URL will depend upon how the URL manager is configured (which is the point). The above examples may also output:
The exact format of the outputted URL will depend upon how the URL manager is configured (which is the point). The above examples may also output:
*
`/site/page/id/about/`
*
`/site/page/id/about/`
*
`/index.php/hi-tech`
*
`/index.php?r=site/page&id=about`
*
`/index.php?r=site/page&id=about`
*
`/index.php?r=date-time/fast-forward&id=105`
*
`/index.php/date-time/fast-forward?id=105`
*
`/index.php/date-time/fast-forward?id=105`
*
`http://www.example.com/blog/post/index/`
*
`http://www.example.com/blog/post/index/`
*
`http://www.example.com/index.php?r=blog/post/index`
*
`http://www.example.com/index.php?r=blog/post/index`
...
@@ -51,7 +51,7 @@ echo $this->createUrl('view', ['id' => 'contact']); // same controller, differen
...
@@ -51,7 +51,7 @@ echo $this->createUrl('view', ['id' => 'contact']); // same controller, differen
echo
$this
->
createUrl
(
'post/index'
);
// same module, different controller and action
echo
$this
->
createUrl
(
'post/index'
);
// same module, different controller and action
echo
$this
->
createUrl
(
'/site/index'
);
// absolute route no matter what controller is making this call
echo
$this
->
createUrl
(
'/site/index'
);
// absolute route no matter what controller is making this call
echo
$this
->
createurl
(
'hi-tech'
);
// url for the case sensitive action `actionHiTech` of the current controller
echo
$this
->
createurl
(
'hi-tech'
);
// url for the case sensitive action `actionHiTech` of the current controller
echo
$this
->
createurl
(
'date-time/fast-forward'
,[
'id'
=>
105
]);
// url for action the case sensitive controller, `DateTimeController::actionFastForward`
echo
$this
->
createurl
(
'
/
date-time/fast-forward'
,[
'id'
=>
105
]);
// url for action the case sensitive controller, `DateTimeController::actionFastForward`
```
```
> **Tip**: In order to generate URL with a hashtag, for example `/index.php?r=site/page&id=100#title`, you need to
> **Tip**: In order to generate URL with a hashtag, for example `/index.php?r=site/page&id=100#title`, you need to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment