0

我的网络服务器结构:

mysite.com/www/here goes zendFramework folders and files..

我想让我的网址像这样

mysite.com

但是,不是这样的:

mysite.com/public/

那么如何使它成为最好的方法呢?,使用 .htaccess 重定向?

4

1 回答 1

1

阅读这篇文章:http ://akrabat.com/zend-framework/zend-framework-on-a-shared-host/

在根文件夹的 index.php 中:

<?php 
define('RUNNING_FROM_ROOT', true);
include 'public/index.php';

在根文件夹中的 .htaccess 文件中:

SetEnv APPLICATION_ENV production

RewriteEngine On
RewriteRule .* index.php 
于 2013-03-28T08:24:16.360 回答