Difference between #1 and #4 of
How to ensure unicity to url

Changes

Title unchanged

How to ensure unicity to url

Category unchanged

Tips

Yii version unchanged

Tags unchanged

SEO, unique, URL

Content changed

[...]
```php
public function beforeAction($action)
{
 
if (Yii::app()->request->u
$normalizedUrl != CHtml::normalizeUrl(array_merge(array("/".$this->route), $_GET))); $this->redirect(CHtml::if (Yii::app()->request->url != $normalizedUrl && strpos($normalizedUrl(array_merge(array($this->route), $_GET)), Yii::app()->errorHandler->errorAction) === false) {
 
$this->redirect($normalizedUrl
, true, 301); }
 
return parent::beforeAction($action); }
```
[...]
public function beforeAction($action)
{

 
if (Yii::app()->request->u
$normalizedUrl != CHtml::normalizeUrl(array_merge(array("/".$this->route), $_GET))); $this->redirect(CHtml::if (Yii::app()->request->url != $normalizedUrl && strpos($normalizedUrl(array_merge(array($this->route), $_GET)), Yii::app()->errorHandler->errorAction) === false) {
 
$this->redirect($normalizedUrl
, true, 301); }
 
return parent::beforeAction($action); }
 
} ``` Notice that you cannot add this rule for actionError and actionIndex, so if you want to make unique addresses in the site controller you cannot extend the master controller, but you have to implement a special method with exception for this two actions.
 
 
Links
 
-----
 
- [Chinese version](http://www.itkuaixun.com/bbs/thread-50-1-3.html "Chinese version")
 
13 0
16 followers
Viewed: 23 607 times
Version: 1.1
Category: Tips
Tags: SEO, unique, URL
Written by: zaccaria
Last updated by: marcovtwout
Created on: Jul 26, 2011
Last updated: 12 years ago
Update Article

Revisions

View all history