I've urlmanager turned on, and probably because of this fact I cannot register css and js fiels properly.
when I add $this->registerCssFile('views/A_view/A.css');
my file is attached <link href="D:\XAMPP\htdocs\somedomain.com/views/A_view/A.css" rel="stylesheet">
which seems correct.
But the file is not really working on page.
Further more if I'm trying to open it from debug of chrome in a new window browser goes to
http://somedomain.com/A_view/D:/XAMPP/htdocs/somedomain.com/views/A_view/A.css
Probably I have problems in url managment ? In urlManager settings I've got such rules like:
A_view/<username:\w+> => A_view/view
A_view => A_view/index
A_view/custom => A_view/custom
views/A_view => views/A_view
Shall I add something ?