1

我正在使用 zend 框架开发一个模块,并且我已经使用 zf create project 命令创建了一个项目

当我尝试使用ip/folder/controller/action它访问 url 时出现错误未找到错误当我尝试使用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

我只是将它添加到 index.php 的顶部:

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

这是Akrabat.com 的 Rob Allen建议的另一种方法

于 2013-01-16T10:06:55.893 回答