使用Yii框架注册客户端软件包时使用https而不是http

时间:2013-07-28 11:06:19

标签: php ssl https yii

我只使用https进行登录操作,因此当我们发布无效密码时,它会刷新页面并显示验证错误,在这种情况下,https将阻止所有以http开头的css,js ..资源。

BTW我正在使用Yii客户端软件包注册:

  Yii::app()->clientScript->registerPackage('login');

此处登录是资产包:

  'login' => array(
    'js'  => array('js/jquery.js', 'js/bootstrap.js', 'js/other.js'),
    'css' => array('css/other.css'),
    'depends'  => array('jquery'),
    'basePath' => 'theme'
   ),

因此,例如,css文件将会出现并选择要破坏的页面样式。

有什么办法吗?

1 个答案:

答案 0 :(得分:0)

您可能希望研究设置包的basePath属性。更多详情:http://www.yiiframework.com/doc/api/1.1/CClientScript#packages-detail