我正在尝试使用xampp 5.6.23在Windows上设置开发环境。
我想要使用Restler 3.0.0设置API,以便我可以浏览http://localhost/api/cars/search?term=red
来调用search($term)
文件中的C:\xampp\htdocs\api\cars.php
函数:
<?php
class cars{
public function search($term) {
// do search...
return $result;
}
}
我还设置了C:\xampp\htdocs\api\index.php
:
<?php
require_once 'vendor/autoload.php';
require_once 'vendor/luracast/restler/vendor/restler.php';
use Luracast\Restler\Restler;
Defaults::$crossOriginResourceSharing = true;
$r = new Luracast\Restler\Restler();
$r->setCompatibilityMode('2');
$r->setSupportedFormats('JsonFormat', 'XmlFormat', 'JsFormat');
Luracast\Restler\Format\JsonFormat::$unEscapedUnicode = false;
$r->addAPIClass('cars');
$r->addAPIClass('Luracast\\Restler\\Resources');
$r->handle(); //serve the response
和C:\xampp\htdocs\api\.htdocs
:
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^$ index.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<IfModule mod_php5.c>
php_flag display_errors On
</IfModule>
但如果我转到任何网址(/
或/cars
),我会收到404错误:
<response>
<error>
<code>404</code>
<message>Not Found</message>
</error>
<debug>
<source>Routes.php:431 at route stage</source>
<stages>
<success>get</success>
<failure>route</failure>
<failure>negotiate</failure>
<failure>message</failure>
</stages>
</debug>
</response>
我尝试了SO的多个答案,但没有一个在我的实例中有效。我已取消注释LoadModule rewrite_module modules/mod_rewrite.so
并设置AllowOverride All
,我可以在httpd.conf
找到它。我也尝试将我的所有内容移动到htdocs
而不是子文件夹,但仍然得到相同的结果。
答案 0 :(得分:0)
由于您的班级index()
没有search()
功能但只有cars
个功能,因此您需要访问网址/cars/search/term
。
或者你想要实现其他目标吗?