我第一次尝试制作漂亮的 url,这是我的系统,.htaccess 将所有内容映射回 index.php,index.php 将 URL 拆分为一个数组,然后使用 case 语句来决定如何继续。
.ht 访问:
RewriteBase /
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^.*$ ./index.php
索引.php:
$request = $_SERVER['REQUEST_URI'];
#split the path by '/'
$params = explode("/", $request);
var_dump($params);
if(!isset($params[1]) || $params[1] == "") {
require_once('inc/content_default.php');
} else if ($params[1] == "posthandler"){
require_once('bin/posthandler.php');
} else {
switch($params[1]) {
case "dashboard":
include('inc/content_active.php?ign=' . $params[2]);
break;
}
}
问题是当 url 为:[domain]/dashboard/AviateX14 时,我收到错误:
Warning: include() [function.include]: Failed opening '/inc/content_active.php?ign=AviateX14' for inclusion (include_path='.:/opt/php-5.3/pear') in /home/u502822836/public_html/index.php on line 92
该文件确实存在,问题出在代码上,我知道这一点,因为我已经通过放入 include('index.php') 进行了测试,但它仍然失败。该文件确实存在于 inc/content_active.php 中。
我做错了什么伙计们?:(
编辑: $params 的 var_dump 是:
array(3) { [0]=> string(0) "" [1]=> string(9) "dashboard" [2]=> string(9) "AviateX14" }