昨天我在transip买了一个VPS,安装了CentOS和DirectAdmin,我也在那里买了一个域名。我尝试使用简单的 .html 和 .php 文件测试网站,一切正常。现在我上传了 Zend,但是当我加载网站时,我得到了 500 个内部。结构是这样的:
- .htpasswd
- 应用
- 文档
- 图书馆
- public_ftp
- public_html
- 测试
这是我的 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/Zend'),
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();
这是我的.htacces:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
希望可以有人帮帮我。