Thursday, 21 May 2015

How to create case-insensitive urls in Yii

If you want Yii to treat requests without case sensitiveness,

Use:
'urlManager'=>array(
  'caseSensitive' => false,
)
In this way, the requests
http://mysite.com/categories/view/1
And
http://mysite.com/CateGorieS/VieW/1

Should be treated in the same way.

No comments:

Post a Comment