0

我无法在 Bluehost 服务器上正确设置 ZF 库的包含路径。

这是目录结构:

/root_directory

 .htaccess

 __/Zend

 __Application(from ZF)

 __library(from ZF)

 __/public_html

    __/public(the ZF public folder)

我从公用文件夹中删除了 .htaccess 并将其放在 root_directory 中。

.htaccess 的内容:

RewriteEngine On

RewriteRule ^.htaccess$ - [F]
RewriteCond %{REQUEST_URI} =""
RewriteRule ^.*$ /public/index.php [NC,L]


RewriteCond %{REQUEST_URI} !^/public/.$
RewriteRule ^(.)$ /public/$1
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [NC,L]

RewriteRule ^public/.*$ /public/index.php [NC,L]

公共文件夹中 index.php 的内容:

// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

// Define application environment
defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ?  getenv('APPLICATION_ENV') : 'production'));

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../library'),
    get_include_path(),
)));

/** Zend_Application */
require_once 'Zend/Application.php';

// Create application, bootstrap, and run
$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . '/configs/application.ini'
);
$FrontController = Zend_Controller_Front::getInstance();
$Router=$FrontController->getRouter();

  Zend_Layout::startMvc(array(
    "layout" => "layout",
    "layoutPath" => "layouts/scripts"
    ));

$plugin=new Zend_Controller_Plugin_ErrorHandler();
$plugin->setErrorHandler(array("controller" =>'ApplicationError',
                               "action"=>'index'));
$FrontController->registerPlugin($plugin);

$application->bootstrap()
            ->run();

请帮助我在服务器上部署我的项目。如果还有什么我需要提及的,请告诉我。

4

1 回答 1

0

看看执行以下操作是否能让您启动并运行:

  • 将内容public_html/public移入public_html并删除public文件夹
  • 删除root_directory/.htaccess
  • 创造public_html/.htaccess

public_html/.htaccess中,输入:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
  • 您的index.php文件看起来不错,无需更改APPLICATION_PATH.

Basically, the only change is that instead of actually using the public folder that came with Zend Framework, you replace it with public_html instead since that is really your public folder.

于 2012-05-15T21:44:33.653 回答