私はzend Frameworkバージョン1.11.11を使用しています。私はMAMP PROを搭載したMac(OSX 10.6.8)で動作します。ZendはMAMP PROのインデックスページにリダイレクトします
私は休暇を過ごす前にプロジェクトに取り組んでいました。私が戻ってきたときは、私のローカルバージョンのインデックスページまたはウェブサイトのページにアクセスしようとするたびに、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;
}
}
誰かが助けることができるPL簡単ですか?ここ
EDIT
は私の仕事フォルダのアーキテクチャです:
/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)
誰でもあなたの休暇中にあなたのコードに触れましたか? – emaillenin
私は今朝、現地のものと交換しましたが、まだ運がありません。 – AKFourSeven
MAMP Proのインデックスファイルはどこにありますか?あなたのZend index.phpが存在しますか? – emaillenin