对于其中一个项目,我使用Slim Framework http://www.slimframework.com/在PHP中创建restful API。
我通过使用https://github.com/slimphp/Slim中的说明将其复制到PHP项目文件夹中,对框架进行了手动安装。
后来我也更新了我的.htaccess。
对于我的项目,我有以下目录结构
project\
----slim\
----tests\
----index.php
----.htaccess
为此,Get call即http://someIp/project/适用于我。它取得了标准"欢迎来到Slim!恭喜!您的Slim应用程序正在运行。如果这是你第一次使用Slim,请从这个" Hello World"开始。 。教程#&34; 但是,post / patch / delete和其他get不起作用。甚至没有打招呼。它给出了未找到的错误。
http://someIp/project/hello/:name 在此服务器上找不到请求的URL / project / hello /:名称。
http://someIp/project/post 在此服务器上找不到请求的URL /项目/帖子。
将我的.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();
答案 0 :(得分:17)
以下步骤对我有用:
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
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
RewriteEngine On
RewriteBase /project
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
1. Type the following command in the terminal
a2enmod rewrite
2. Restart apache2 after
service apache2 restart