Yii302将所有到本地主机的请求重定向到远程服务器


Yii 302 redirects all requests to localhost to remote server

我将本地开发从windows PC迁移到Ubuntu,并且没有更改Yii上的任何设置。但当我访问时http://localhost,每个请求都重定向到我的服务器索引页(http://www.xxx.com/)。然而在窗口中,http://localhost将重定向到http://www.xxx.com但是localhost/controller/view不会。现在,所有到Yii的请求都被重定向到服务器(web根路径中未通过Yii的bootstrap index.php运行的其他文档不会被重定向)。可能是什么原因造成的?这是我的protected/config/main.hp:

<?php
return array(
    'id'=>'xxx',
    'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
    'name'=>'XXX',
    'language'=>'zh_CN',
    // preloading 'log' component
    'preload'=>array('log'),
    // autoloading model and component classes
    'import'=>array(
        'application.models.*',
        'application.components.*',
        'application.helpers.*',
    ),
    'modules'=>array(
        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'xxx',
        ),
    ), 
    // application components
    'components'=>array(
        'application'=>array(
            'defaultController'=>'www'
        ),
        '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>',
            ),
        ),
        'db'=>array(
            'connectionString' => 'mysql:host=localhost;dbname=xxx',
            'schemaCachingDuration'=>3600,
            'emulatePrepare' => true,
            'username' => 'xxx',
            'password' => 'xxx',
            'charset' => 'utf8',
        ),
      /*'cache'=>array(
            'class'=>'system.caching.CMemCache',
            'servers'=>array(
                array('host'=>'127.0.0.1', 'port'=>11211, 'weight'=>60),
               array('host'=>'127.0.0.1', 'port'=>11211, 'weight'=>40),
            ),
        ),*/
        /*'session' => array (
            'autoStart'=>'true',
            'class' => 'system.web.CDbHttpSession',
            'connectionID' => 'db',
            'autoCreateSessionTable' => FALSE,
            'timeout' => 7200,
            'cookieMode' => 'allow',
            'cookieParams' => array(
                'path' => '/',
                'domain' => '.xxx.com',
                'httpOnly' => TRUE,
             ),  
        ),
        'httpCookie'=>array(
            'domain'=>'.xxx.com'
        ),*/
        'user'=>array(
            'loginUrl'=>array('accounts/login'),
            // enable cookie-based authentication
            'allowAutoLogin'=>true,
            'authTimeout'=>'7200'
        ),
        'errorHandler'=>array(
            // use 'site/error' action to display errors
            'errorAction'=>'site/error',
        ),
        'log'=>array(
            'class'=>'CLogRouter',
            'routes'=>array(
                array(
                    'class'=>'CFileLogRoute',
                    'levels'=>'error, warning',
                ),
                //uncomment the following to show log messages on web pages
                 // array(
                      // 'class'=>'CWebLogRoute',
                  // ),   
            ),
        ),
    ),
    // application-level parameters that can be accessed
    // using Yii::app()->params['paramName']
    'params'=>array(
        // this is used in contact page
        'adminEmail'=>'service@xxx.com',
    ),
);

您的main.php似乎没有任何问题,可能会重定向到example.com域。它可能是你的.htaccess文件吗?