使用Slim Framework获取HTTP错误500(php)

时间:2016-07-10 20:08:08

标签: php .htaccess slim

使用Slim框架时,我收到HTTP错误500.

我在/ api / v1 /:

中有Slim Framework的index.php
<?php

require '../../vendor/autoload.php';

$app = new Slim\App();

$app->get('/auth2', function ($request, $response, $args) {
    $response->write("Welcome to Slim!");
    return $response;
});

$app->run();

在同一文件夹中,我有.htaccess:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]

但是当我转到/ api / v1 / auth2时,页面无法加载。我只收到HTTP错误500.我是否错误配置了Slim?

1 个答案:

答案 0 :(得分:3)

将此代码放在您尝试加载的页面顶部。

error_reporting(-1);
ini_set('display_errors', 1);

如果您的功能不在@

会打印错误