php - Url Rewriting working except for one link -
this url manager code inside config/main.php
'urlmanager'=>array( 'urlformat' => 'path', 'showscriptname'=>false, 'urlsuffix'=>'.html', 'casesensitive'=>false, 'rules'=>array( '<controller:\w+>'=>'<controller>/index', '<controller:\w+>/<action:\w+>/<id:\w+>'=>'<controller>/<action>', '<controller:\w+>/<action:\w+>'=>'<controller>/<action>', '<controller:\w+>/<id:\d+>/<title>'=>'<controller>/view', '<controller:\w+>/<id:\d+>'=>'<controller>/view', ), ),
locally works perfectly. it's working in our server except urls controller name careersvacancies.
this error i'm obtaining
error 404 unable resolve request
"careersvacancies/careers"
.error 404 unable resolve request
"careersvacancies/index"
.
thanks in advance.
Comments
Post a Comment