使用多个Yii应用程序

时间:2013-09-08 17:48:00

标签: php css yii nginx path

我有以下目录结构

  • 根/
  • 根/受保护的
  • 根/框架
  • 根/后端
  • 根/后端/受保护的

好吧,第一个Yii应用程序直接位于root中与framework文件夹相同的级别。第二个Yii应用程序位于backend文件夹中。它们都使用位于root中的相同框架文件夹。

我在两个应用程序中使用路径样式url。比如mydomain.com/controller/action

问题是......

但是当我试图打开时 mydomain.com/backend/ yii尝试将backend作为控制器名称传递给mydomain.com/index.php并给我404.但实际上它是单独应用程序的子目录

我尝试解决此问题:将root/index.php的内容更改为以下代码:

<?php
if (strpos($_SERVER["REQUEST_URI"], 'backend') !== false) {
    require_once dirname(__FILE__) . '/backend/index.php';
} else {

// change the following paths if necessary
    $yii = dirname(__FILE__) . '/framework/yii.php';
    $config = dirname(__FILE__) . '/protected/config/main.php';

// remove the following lines when in production mode
    defined('YII_DEBUG') or define('YII_DEBUG', true);
// specify how many levels of call stack should be shown in each log message
    defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3);

    require_once($yii);
    Yii::createWebApplication($config)->run();

}

它有效,但所有媒体,css文件路径搞砸了:对于ex。位于backend/css内的css尝试打开mydomain.com/img.jpg而不是mydomain.com/backend/img.jpg

换句话说,我尝试的不是正确的解决方案。我的网络服务器是NGINX,配置如下:

server {
    set $host_path "/var/www/mydomain";

    server_name mydomain.com;
    root $host_path;
    set $yii_bootstrap "index.php";

    charset utf-8;

    location / {
        index  index.html $yii_bootstrap;
        try_files $uri $uri/ /$yii_bootstrap?$args;
    }

    location /backend/ {
        index  index.html $yii_bootstrap;
        try_files $uri $uri/ /$yii_bootstrap?$args;
    }

    location ~ ^/(protected|framework|themes/\w+/views) {
        deny  all;
    }


    location ~ \.php$ {
        fastcgi_split_path_info  ^(.+\.php)(.*)$;
        #let yii catch the calls to unexising PHP files
        set $fsn /$yii_bootstrap;
        if (-f $document_root$fastcgi_script_name){
            set $fsn $fastcgi_script_name;
        }
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
      }


    # prevent nginx from serving dotfiles (.htaccess, .svn, .git, etc.)
    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }
}

1 个答案:

答案 0 :(得分:0)

您不必对核心进行任何更改。最好尝试路由。

这样的事情 -

'/ backend / controller / action'=&gt; main.php配置中的'/ controller / action /'。

希望这会有所帮助......