这是我第一次使用 Slim 框架,到目前为止我真的很喜欢这个应用程序的外观和感觉。使它几乎像一个快速 API 服务器。
我在本地机器上构建了一个小型服务器,它与虚拟主机一起工作得很好。
它与我在本地设置的虚拟主机有关,但我试图用 .htaccess 文件绕过它。
如果我输入http://www.domain.com/public/resource在生产服务器上它确实可以工作。
我的目录结构如下:
public/
index.php
.htaccess
src/
.htaccess
根文件夹中的 .htaccess 如下所示:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
公共文件夹中的 .htaccess 如下所示:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
我还将发布我的 index.php 的一部分,并显示到目前为止我登录的位置。
$app = new Slim\Slim();
$env = $app->environment();
switch($env['REMOTE_ADDR']) {
case '127.0.0.1':
define('ENVIRONMENT', 'local');
break;
default:
define('ENVIRONMENT', 'production');
break;
}
// Here a log works when you go to http://www.domain.com
// Get
$app->get('/:resource(/(:id)(/))', function($resource, $id = null) {
// Here it works on local machine on production there's no possible way to get here
// var_dump('foobar');die; will respond nothing to cURL -i -X GET http://www.domain.com/resource
// The request will return a 404 error
$resource = \App\Resource::load($resource);
if ($resource === null) {
\App\Resource::response(\App\Resource::STATUS_NOT_FOUND);
} else {
$resource->get($id);
}
});