我正在安装Yii框架。我有以下文件夹结构:
sites
|- hr4
|-- yiib
|--- htdocs *this is the web root*
|- yii
|-- framework
需求检查员给了我一个通行证。所以我输入
yiic webapp ../../hr4/yiib/htdocs
创造的一切都很好。 assets文件夹是777',“protected”文件夹中的“data”和“runtime”文件夹也是。
这是htdocs中的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 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();
最后是我的.htaccess文件:
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
当我尝试使用浏览器访问此站点时,我得到:
我对此服务器的命令行访问有限。我正在努力获得sudo访问权限,但与此同时,任何想法都会受到赞赏。