我正在开发一个应用程序,我使用apache的.htaccess将URL重写到我的应用程序中的不同模块。当我尝试浏览我的应用程序时,出现以下错误:
在此服务器上找不到请求的网址/var/www/dynamicsuite/index.php。
但/var/www/dynamicsuite/index.php确实存在!我尝试chmod 777以查看它是否是权限问题,但它仍然没有用。
以下是一般文件布局以及我要完成的任务:
/var/www/app - Main Directory
/var/www/app/index.php - This is what I rewrite too
/var/www/app/modules/login - The login form
/var/www/app/modules/home - The homepage on login
/var/www/app/modules/error - Error page if something goes wrong
当用户转到应用程序时,它将查看他们是否已登录并将其重定向到正确的模块。我使用mod_rewrite是因为我不希望用户必须指定一个长URL,例如 mysite.com/app/modules/login 。相反,我正在制作它,所以它是 mysite.com/app/login 。在我想要使用我编写的类/方法作为变量的URL中的模块名称之后的所有内容。示例:
mysite.com/app/error/404/time/user/etc
VS
mysite.com/app/modules/error?error=404&time=12345&user=username&etc=asdf
以下是我在.htaccess文件中使用的代码:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,PT]
AddDefaultCharset UTF-8
注意:我正在使用PT标志,因为我正在为应用程序使用别名。
将Ubuntu 14.04与apache2,mod_rewrite,mod_alias
一起使用你可以在这里看到它:
以下是使用的其他文件:
配置
$cfg["install_dir"] = array("ds", "employee", "dynamicsuite");
的index.php
// Required Scripts
require_once("config/config.php");
function __autoload($class) {
require_once("core/lib/$class.class.php");
}
if(!dsDatabase::dbCheck()) {
dsInstance::genericError(1);
exit;
}
// Process the URI and direct the user to the proper module
elseif(!isSet(dsInstance::getUri()[0])){
// If a session if found, skip the login page and render the homepage
if(dsSession::checkSession() === true) {
header("Location: home");
}
// If no session is found, render the login page
else {
header("Location: login");
}
}
// If the module exists, render it
elseif(file_exists("modules/" . dsInstance::getUri()[0])) {
require_once("modules/" . dsInstance::getUri()[0] . "/index.php");
}
// If no conditions are met, render the error page
else {
dsInstance::genericError(404);
}
getUri()函数:
public static function getUri() {
global $cfg;
if(strpos($_SERVER["REQUEST_URI"], "?") != false) {
$uri = explode("/", trim(substr($_SERVER["REQUEST_URI"],0,strpos($_SERVER["REQUEST_URI"],"?")),"/"));
} else {
$uri = explode("/", trim($_SERVER["REQUEST_URI"], "/"));
}
$search = in_array($uri[0], $cfg["install_dir"]);
if($search === true) {
return array_splice($uri, 1, count($uri));
} else {
return $uri[0];
}
}
dbCheck()函数:
public static function dbCheck() {
global $cfg;
try {
$db = new PDO($cfg['db_type'] . ":host=" .
$cfg['db_host'] . ";dbname=" .
$cfg['db_name'],
$cfg['db_user'],
$cfg['db_pass']);
} catch (Exception $e) {
return 0;
}
return 1;
}
checkSession()函数:
public static function checkSession() {
if(isSet($_SESSION["DS_SESSION"])) {
return true;
} else {
return false;
}
}
genericError()函数:
public static function genericError($code) {
$location = dsInstance::getUri()[0];
$time = time();
header("Location: error/$code/$location/$time");
}
谢谢!
答案 0 :(得分:1)
我似乎已经解决了这个问题(感谢zx81将问题缩小到了别名!)
通过将mod_rewrite指令 RewriteBase 添加到我的。 htaccess 文件,它现在似乎按预期工作。