我在 xampp 上使用 zend 框架 2。我在 root('htdocs/zendtest/.htaccess') 中创建了 .htaccess 文件,该文件具有以下代码,
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} $ [NC]
RewriteCond %{HTTP_HOST} !/zendtest
RewriteRule ^(.*)$ /zendtest/public/$1 [R=301,L]
我的“zentest/public/.htaccess”代码是,
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
'zentest/public/index.php'代码:
<?php
/**
* This makes our life easier when dealing with paths. Everything is relative
* to the application root now.
*/
chdir(dirname(__DIR__));
// Setup autoloading
require 'init_autoloader.php';
// Run the application!
Zend\Mvc\Application::init(require 'config/application.config.php')->run();
当我在浏览器上打开“localhost/zendtest”时,它会将我带到“localhost/zendtest/public”。我想通过仅设置 htaccess 从 url 中删除“public”(这将在 localhost 和在线服务器中都有效),没有使用虚拟主机。我该怎么做?('localhost/zendtest/'目录中没有'index.php'文件)
-谢谢。
编辑:
更新:
目录:
我在'zendtest/'文件夹中有以下.htaccess(根据Ravi Thapliyal的回答)('zendtest'文件夹中现在没有'zendtest/index.php'。只是.htaccess。所有其他文件夹结构与“目录”图片。)
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /zendtest/
RewriteCond %{REQUEST_URI} !/public [NC]
RewriteRule ^(.*)$ public/$1 [L]
但是现在在浏览器上打开“localhost/zendtest/”时出现以下问题-
解决:
我必须进行一些更改,如下图(.htaccess 很好):
并达到了目标——