1

zendフレームワークを使用してモジュールを開発しており、zfcreateprojectコマンドを使用してプロジェクトを作成しました

それを使用してURLにアクセスしようとするip/folder/controller/actionと、エラーが見つかりませんエラーが発生します。使用してアクセスしようとすると、アクセスip/folder/index.php/controller/actionできますが、どちらの場合もjs、cssファイルを含めることができず、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は

<?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();
4

2 に答える 2

1

これを .htaccess に追加してみてください:

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /([^/]+/)*index.php 
RewriteRule ^index.php(.*)$ /path/to/your/installation$1 [R=301,L]

/path/to/your/installation を正しいパスに置き換えます

于 2013-01-16T07:59:45.543 に答える
0

I just add this to the top of the index.php:

$_SERVER["REQUEST_URI"] = str_replace('index.php', '', $_SERVER["REQUEST_URI"]);

which is the other method suggested by Rob Allen at Akrabat.com

于 2013-01-16T10:06:55.893 に答える