我有一个远程服务器为移动应用程序提供REST服务。一切都很好。我是PHP的新手,所以我可能走错了路。
我的.htaccess
文件如下所示:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^(.*)$ api.php?rquest=$1 [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*)$ api.php [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} -s
RewriteRule ^(.*)$ api.php [QSA,NC,L]
</IfModule>
这是我的PHP脚本的开头:
<?php
require_once("Rest.inc.php");
error_reporting(E_ALL);
class API extends REST {
// setup constants
public function __construct(){
parent::__construct(); // Init parent contructor
$this->dbConnect(); // Initiate Database connection
}
private function dbConnect(){
$this->db = mysql_connect(self::DB_SERVER,self::DB_USER,self::DB_PASSWORD);
if($this->db)
mysql_select_db(self::DB,$this->db);
}
public function processApi(){
$func = strtolower(trim(str_replace("/","",$_REQUEST['rquest'])));
if((int)method_exists($this,$func) > 0) {
$this->$func();
} else {
$this->response('',404); // If the method not exist with in this class, response would be "Page not found".
}
}
private func ...
etc.
我想在同一台服务器上复制此环境。但是,我没有太多运气。我将相关的文件/文件夹复制到域中的新子文件夹,插入.htaccess
文件,然后重新启动服务器,但没有在那里进行正确的路由。我刚刚得到&#34;在服务器上找不到&#34;错误。我已经检查了所有文件权限。这是创建另一个服务器实例的正确方法吗?