我试图用PHP创建一个基本的REST样式API,我遇到了一个奇怪的问题。当我通过URL /rest/viewinput.php访问我的一个页面(viewinput.php)时,页面加载正常。当我尝试通过/ rest / viewinput时,我找不到"页面未找到"错误。
因此,这里是确定请求类型和发送位置的代码。这可以在我的server.php页面上找到
//in server.php
public function serve() {
$uri = $_SERVER['REQUEST_URI'];
$method = $_SERVER['REQUEST_METHOD'];
$paths = explode('/', $this->paths($uri));
array_shift($paths); //
$resource = array_shift($paths);
if ($resource == 'rest') {
$page = array_shift($paths);
if (empty($page)) {
$this->handle_base($method);
} else {
$this->handle_page($method, $page);
}
}
else {
// We only handle resources under 'clients'
header('HTTP/1.1 404 Not Found');
}
}
由于它是具有确定页面名称的GET方法,因此将传递给此函数
//in server.php
private function handle_page($method, $page) {
switch($method) {
case 'GET':
if($page == "viewinput"){ //I have both viewinput.php and viewinput just to check both. Only viewinput.php works
$this->display_info();
}
if($page == "viewinput.php"){
$this->display_info();
}
default:
header('HTTP/1.1 405 Method Not Allowed');
header('Allow: GET, PUT, DELETE');
break;
}
}
然后从这里发送到
//in server.php
function display_info(){
$view = new ViewInputs();
$view->view(); //this function is on viewinput.php
}
因此,当我访问/rest/viewinput.php时,视图功能正常显示。当我访问/休息/查看输入时,我得到了一个"断开链接"错误。
我在线阅读了一个REST服务器Found Here的教程,它运行正常。
以下是我的httpd.conf文件
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/.* rest/server.php
这是我的viewinput.php文件。我相信它正常工作(当页面加载时,server.php上的服务函数应该运行。
<?
include_once 'server.php';
class ViewInputs{
function view(){
$sql = mysql_query("select * from entry");
?>
<table>
<th>ID</th>
<th>Text</th>
<col width="200">
<col width="150">
<?
while ($result = mysql_fetch_array($sql)){
?>
<tr><td><? echo $result['id']." "; ?></td><td><? echo $result['text']; ?></td></tr>
<?
}
?> </table> <?
}
}
$server = new server();
$server->serve();
?>
来自httpd.conf。我可能错了,但我相信这是如何允许.htaccess文件
DocumentRoot "C:/xampp/htdocs/rest"
<Directory />
Options FollowSymLinks
AllowOverride ALL
Order deny, allow
Deny from none
</Directory>
<Files ".ht*">
Require all ALLOW
</Files>
答案 0 :(得分:1)
您的重写规则编写不正确。发生的事情是当你去休息/ viewinput.php时该文件实际存在以便能够运行。当你去休息/查看输入时该文件不存在。您可以转到http://martinmelin.se/rewrite-rule-tester/检查重写规则,您会发现重写规则不合适。
这样做的目的是让你没有veiwinput.php文件,所有内容都应该直接发送到server.php文件。很可能你想要的重写规则是这样的:
RewriteRule rest/* rest/server.php
如果你想真正去viewinput.php,根本就没有重写规则,只需摆脱它。
如果您希望rest / viewinput被视为rest / viewinput.php,请使用:
RewriteRule ^rest/([a-z]+) rest/$1.php