2

我正在尝试在共享的 webhost 上创建 Zend 应用程序,我无法访问 php.ini 或任何东西。

Zend 已为索引控制器/视图设置并工作。但是,当我尝试通过“mysite.com/About”访问另一个控制器/视图时,我收到此错误:

Not Found
The requested URL /home/vhosting/g/vhostxx/domains/mysite.com/htdocs/projectname/public/index.php was not found on this server.

我的文件夹结构在这里看起来像这样:http: //framework.zend.com/wiki/display/ZFPROP/Zend+Framework+Default+Project+Structure+-+Wil+Sinclair(见第 9 点)

根目录(/home/vhosting/g/vhostxx/domains/mysite.com/htdocs/projectname)中的 .htaccess 如下所示:

php_value include_path "/domains/mysite.com/htdocs/www/library"

Options All -Indexes

php_flag display_errors on

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.mysite.com$
RewriteCond %{REQUEST_URI} !public/
RewriteRule (.*) /public/$1 [L]

公共文件夹中的 .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:

// 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'
);
$application->bootstrap()
        ->run();

以及应用程序文件夹中的(空)引导程序:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{

}

我试图访问的控制器是:projectname/application/controllers/AboutController.php 应该可以通过 mysite.com/About 访问,但我收到了前面所述的消息。

我真的不知道我做错了什么或我错过了什么。谁能告诉我如何解决这个问题或如何调试这个?

旁注:我的主机自动翻译

mysite.com/htdocs/projectname/

进入

mysite.com/htdocs/www/

在 ftp 上,不确定这是一个问题还是在通过 http 访问它时发生

4

1 回答 1

4

在公用文件夹的 htaccess 文件中,更改:

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

包括一个前导斜杠:

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

Apache 猜测重写规则的目标是什么,它是否是文件路径的 URI 路径,看起来它错误地猜测它是文件路径。您也可以将基础添加到您的 htaccess 文件中:

RewriteBase /
于 2012-08-26T18:00:36.763 回答