我正在使用zend Framework版本1.11.11,我使用MAMP PRO在Mac(OSX 10.6.8)上工作。
我在去度假之前正在研究一个项目,当我回来时,每当我尝试访问索引页面或本地版本的网站页面时,我都被重定向到MAMP Pro索引页面。 它从未发生过。现在我知道其他帖子之前已经解决了这个问题,但我检查了他们的设置,他们是相同的。
的.htaccess
SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
php_value upload_max_filesize 150M
php_value post_max_size 150M
php_value memory_limit 150M
的index.php
<?php
// Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
defined('UPLOAD_PATH')
|| define('UPLOAD_PATH', realpath(dirname(__FILE__) . '/../public'));
defined('TRAILING_CHARS')
|| define('TRAILING_CHARS', "SHARINGAN");
// 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();
bootstrap.php中
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initActionHelpers()
{
Zend_Controller_Action_HelperBroker::addPath(APPLICATION_PATH . '/controllers/helpers', 'Action_Helper');
// Zend_Controller_Action_HelperBroker::addHelper(
// new Action_Helper_Common(null, $session)
// );
Zend_Controller_Action_HelperBroker::getHelper('Common');
}
protected function _initAutoloader() {
$moduleLoader = new Zend_Application_Module_Autoloader(array(
'namespace' => 'Action_Helper_*',
'basePath' => APPLICATION_PATH . '/controllers/helpers'));
return $moduleLoader;
}
}
有人可以帮忙吗?
修改
这是我的工作文件夹的架构:
/Work
index.php (MAMP PRO)
/Project
/_build
/application
/controllers
IndexController.php
/views
/scripts
/error
error.phtml
.
.
.
/index
cms.phtml
index.phtml
add.phtml
edit.phtml
view.phtml
.
.
.
bootstrap.php
/library
/public
/css
/images
/javascript
.htaccess
index.php(Zend index)
答案 0 :(得分:1)
嗨,我刚刚解决了这个问题。 在我的htaccess中,不需要Rewrite Base,我认为这是重定向到MAMP Pro索引页面的内容。 我还删除了在我的application.ini中明确提到的BaseUrl,但我认为没有必要。 希望它有所帮助...