从zend框架网址中删除index.php

我正在使用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();

解决方法:

尝试将其添加到您的.htaccess中:

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

用正确的路径替换/ path / to /您的/安装

上一篇:htaccess 404重定向时如何查找引荐来源网址?


下一篇:php-使用301重定向仅重定向WordPress主页