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

Popular posts from this blog

php - Calling a template part from a post -

Firefox SVG shape not printing when it has stroke -

How to mention the localhost in android -