Hi Experts,
I am working in cakephp.i have done rewrite url for all forms and links. and i have done server side validation through model. but when server side error is generate then url rewrite not working
one form i have done urlrewrite for that like
Router::connect('/employers/edit-securitydetail/:id', array(
'controller' => 'fj_employers',
'action' => 'editSecurityDetail',
'id' => '[0-9]+'
));
then i can access this controller using this url employers/edit-securitydetail/1
when server side error is generate then url change to fj_employers/editSecurityDetail/1
can anyone help me