0

我想分析 Yii 框架的代码...但是我找不到索引文件 :E 它在哪里,如果 .htaccess 不包含任何特定规则,服务器如何知道要搜索什么?

4

3 回答 3

1

Yii 是一个框架,而不是网站。要查看基本的 webapp,请创建它(观看来自 @eskimo 的链接)

于 2012-12-04T14:03:52.260 回答
1

您首先必须设置框架(在命令提示符中)。 这是完成此操作的相当直接的指南这里是来自 Yii 网站的指南

设置框架后,您将拥有一个 index.php 文件

于 2012-12-04T12:06:10.593 回答
0

enter code here在 linux 终端类型中

$ sudo /path/to/yii/framework/yiic webapp /var/www/installationfolder

或者干脆阅读自述文件

在已安装的文件夹中,您会找到 index.php

无论如何,这是代码

<?php   

// change the following paths if necessary


 $yii=dirname(__FILE__).'/../yii/framework/yii.php';
$config=dirname(__FILE__).'/protected/config/main.php';

// remove the following lines when in production model

 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();

?>
于 2012-12-08T06:07:25.467 回答