对于其中一个项目,我正在使用Slim Framework http://www.slimframework.com/在PHP中创建 Restful API。

我通过使用https://github.com/slimphp/Slim上的说明将框架复制到PHP项目文件夹中,从而对该框架进行了手动安装。

后来我也更新了我的.htaccess文件。

对于我的项目,我具有以下目录结构

project\
----slim\
----tests\
----index.php
----.htaccess

为此,Get调用(即http://someIp/project/)对我有用。它获取标准的“欢迎使用Slim!恭喜!您的Slim应用程序正在运行。如果这是您第一次使用Slim,请从此“Hello World”教程开始。”
但是,post/patch/delete和其他get无效。甚至都不打招呼。它给出了未找到的错误。

http://someIp/project/hello/:name
在此服务器上找不到请求的URL/project/hello/:name。

http://someIp/project/post
在此服务器上找不到请求的URL/project/post。

我的.htaccess文件更新为:
RewriteEngine On
RewriteBase /project/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]

仍然失败。

当我将apache配置文件更改为allowOverride = all时,即使对index.php进行GET调用也失败。当然,它不是从.htaccess映射的。

我仍然不知道我需要对.htaccess或任何其他文件进行什么更改才能使其正常工作。

这是代码:
\Slim\Slim::registerAutoloader();

/**
 * Step 2: Instantiate a Slim application
 *
 * This example instantiates a Slim application using
 * its default settings. However, you will usually configure
 * your Slim application now by passing an associative array
 * of setting names and values into the application constructor.
 */
$app = new \Slim\Slim();

/**
 * Step 3: Define the Slim application routes
 *
 * Here we define several Slim application routes that respond
 * to appropriate HTTP request methods. In this example, the second
 * argument for `Slim::get`, `Slim::post`, `Slim::put`, `Slim::patch`, and `Slim::delete`
 * is an anonymous function.
 */

// GET route
$app->get(
    '/',
    function () {
        $template = "hi";
        echo $template;
    }
);

//$app->get(
//    '/v1/status/',
//    function() {
//        echo "status";
//    }
//);
//
$app->get('/hello/:name', function ($name) {
    echo "Hello, $name";
});

// POST route
$app->post(
    '/post',
    function () {
        echo 'This is a POST route';
    }
);

// PUT route
$app->put(
    '/put',
    function () {
        echo 'This is a PUT route';
    }
);

// PATCH route
$app->patch('/patch', function () {
    echo 'This is a PATCH route';
});

// DELETE route
$app->delete(
    '/delete',
    function () {
        echo 'This is a DELETE route';
    }
);

/**
 * Step 4: Run the Slim application
 *
 * This method should be called last. This executes the Slim application
 * and returns the HTTP response to the HTTP client.
 */
$app->run();

最佳答案

以下步骤对我有用:

apache2.conf中的更改

1. Get the path of running Apache
    ps -ef | grep apache
   Append -V argument to the path
    /usr/sbin/apache2 -V | grep SERVER_CONFIG_FILE

2. Naviagte to apache2.conf
    vi /etc/apache2/apache2.conf

3. Update the file Replace "AllowOverride None" to "AllowOverride All"
    <Directory /var/www/>
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
    </Directory>
4. Restart apache2 after
    service apache2 restart
   OR
    apachectl -k graceful

.htaccess中的更改
RewriteEngine on
RewriteBase /

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

子目录中的.htaccess的更改
RewriteEngine On
RewriteBase /project
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]

为Apache 2.2启用mod_rewrite
1. Type the following command in the terminal
    a2enmod rewrite
2. Restart apache2 after
    service apache2 restart

关于PHP Slim框架: The requested URL was not found on this server,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29380208/

10-16 01:21