I followed your tut on separating the front/backend, everything works fine except the links of the backend crud
it doesn’t direct correctly, all links points to the front end due to missing backend.php/ eg in: http://site/ ‘backend.php/’ controller/
did i miss anything or should i need to do anything with the url rules in the config
also that this line in htaccess does not give any effect
RewriteRule ^backend backend.php
this is the url rules i had in config
main.php
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName' => false,
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
),
back.php:
'components'=>array(
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName' => false,
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),