2

我正在使用我自己制作的 PHP CMS。它获取 $_GET 参数url并将其转换为www.website.com/{url}. 此 CMS 使用 $_GET 参数来获取文件。因此,如果urlindex,则 CMS 将搜索该文件index并返回该文件的内容。但是现在,我正在扩展 CMS,使其具有一个附加参数,例如profile/{username}. 我该如何扩展它?我希望我的网址说www.website.com/profile/{username}. 我该怎么做呢?这是我当前的 htaccess:

RewriteEngine On  
RewriteRule ^(|/)$ index.php?url=$1  
RewriteRule ^([a-zA-Z0-9_-]+)(|/)$ index.php?url=$1a

这里是 TPL 系统。

public function addTpl() {     
    global $zip;

    if(!isset($_GET['url']) || empty($_GET['url'])) {
        $_GET['url'] = 'index';
    }

    if(file_exists('_zip/_templates/_front/'. $zip['Template']['Front'] . '/')) {
        if(file_exists('_zip/_templates/_front/'. $zip['Template']['Front'] . '/' . secure($_GET['url']) . '.php')) {
            ob_start();
            include('_zip/_templates/_front/'. $zip['Template']['Front'] . '/' . secure($_GET['url']) . '.php');
            $this->tpl .= ob_get_contents();
            ob_end_clean();
        } else {
            die(zipError('File Not Found', 'The file <b>' . secure($_GET['url']) . '</b> could not be found. Please re-check the URL; If you were directed here using a link, please report that link.'));
        }
    } else {
        die(zipError('Template Not Found', 'The template <b>' . $zip['Template']['Front'] . '</b> could not be found. Please check your configuration file for a mistake.'));
    }
}

我还需要提供其他信息吗?我需要尽快完成这项工作,所以任何建议都将不胜感激。

4

2 回答 2

4

在包含文件之前,您可以将第二个参数 ( {username} ) 作为局部变量,然后您可以在其中将其作为普通变量进行访问。如果您与团队合作,这不是一件好事。

编辑

你可以做的是以下

RewriteEngine On  
RewriteRule ^ index.php

然后在 index.php 你可以有这个

$url = str_replace('index.php','', $_SERVER['PHP_SELF']);
$url = str_replace($url,'',$_SERVER['REQUEST_URI']);
$url = explode('/',$url);
$page = array_shift($url);
foreach ($url as $val){
    $args[] = urldecode($val);
}

现在,如果您打开链接www.website.com/profile/someuser/about,您将拥有

$page = 'profile'
$args[0] = 'someuser'
$args[1] = 'about'

依此类推,你可以有尽可能多的论据。

于 2013-06-10T00:05:01.120 回答
1

php_nub_qq 的答案更简洁:从长远来看,$_SERVER['REQUEST_URI']每次要在 CMS 中添加新的细分时,使用而不是添加更多的重写规则会更好。但是无论如何,我已经在下面回答了,假设您不想过多地更改现有代码,因为您处于困境之中。

此外,您将竭尽全力避免在 addTpl() 中设置任何变量。这是有充分理由的,正如 php_nub_qq 也已经指出的那样,这是为了避免在子模板中设置任何违反封装的变量。但这是一个繁琐的限制,因为您必须向该方法添加更多逻辑,因此您可能应该将模板包含因素分解为私有方法。然后你可以在 addTpl() 中做任何你想做的复杂逻辑。为了避免在模板文件中设置除 之外的任何变量$this,您可以在模板对象本身上设置模板文件的路径,并在将其传递给模板包含方法时使用该路径。

因此,您将添加另一个重写规则:

RewriteRule ^profile/([a-zA-Z0-9_-]+)(|/)$ index.php?username=$1

编辑:我删除了打破这个的正则表达式开头的额外斜杠。

这将在 中设置用户名键$_GET,您可以使用它来切换要加载的模板。然后在 addTpl() 所在的任何类中执行以下操作(这也假设您更改配置以添加$zip['Template']['Profile']类似于$zip['Template']['Front']为配置文件模板设置目录的工作:

class Template {
    public $tpl = '';
    private $_template_file;

    public function addTpl() {     
        global $zip;

        if(!isset($_GET['url']) || empty($_GET['url'])) {
            $_GET['url'] = 'index';
        }

        $top_dir = '_zip/_templates/';
        $type_dir = '_front/';
        $configured = $zip['Template']['Front'];
        $file = $_GET['url'];

        // Check username val and use custom template:
        if (!empty($_GET['username'])) {
            $type_dir = '_profile/';
            $configured = $zip['Template']['Profile']; // assuming you're configuring profile templates
            $file = $_GET['username'];
        }

        $full_dir = $top_dir . $type_dir . $configured . '/';
        if(file_exists($full_dir)) {
            $full_file = $full_dir . secure($file) . '.php';
            if(file_exists($full_file)) {
                $this->_template_file = $full_file;
                $this->tpl .= $this->loadTemplate();
            } else {
                die(zipError('File Not Found', 'The file <b>' . secure($file) . '</b> could not be found. Please re-check the URL; If you were directed here using a link, please report that link.'));
            }
        } else {
            die(zipError('Template Not Found', 'The template <b>' . $configured . '</b> could not be found. Please check your configuration file for a mistake.'));
        }
    }

    private function loadTemplate() {
        ob_start();
        include($this->_template_file);
        $result = ob_get_contents();
        ob_end_clean();
        return $result;
    }
}
于 2013-06-10T03:51:39.200 回答