Works only in root folder
My application written with YII framework works only if placed in root folder like: Localhost/ if I place i开发者_运维问答t somewhere like: localhost/test, then it does not work(Links does not work, CSS is not attaching) Where should I change it? thanks!
You should work around your basePath variable in protected/config/main.php. In almost all cases it looks like
'basePath' => dirname(__FILE__).'/..'
But if this won't help you i think you should check your web-server config.
精彩评论