通过Php AltoRouter路由

时间:2016-07-01 16:14:19

标签: php routing routes router altorouter

我第一次尝试使用路由器(AltoRouter),无法呼叫任何页面。

网络文件夹结构

enter image description here 守则

的index.php

require 'lib/AltoRouter.php';

$router = new AltoRouter();
$router->setBasePath('/alto');
$router->map('GET|POST','/', 'home#index', 'home');
$router->map('GET|POST','/', 'display.php', 'display');
$router->map('GET','/plan/', 'plan.php', 'plan');
$router->map('GET','/users/', array('c' => 'UserController', 'a' => 'ListAction'));
$router->map('GET','/users/[i:id]', 'users#show', 'users_show');
$router->map('POST','/users/[i:id]/[delete|update:action]', 'usersController#doAction', 'users_do');
// match current request
$match = $router->match();

if( $match && is_callable( $match['target'] ) ) {
    call_user_func_array( $match['target'], $match['params'] ); 
} else {
    // no route was matched
    header( $_SERVER["SERVER_PROTOCOL"] . ' 404 Not Found');
}

我在计划文件夹中有一个名为plan.php(显示计划)的文件,我正在尝试的超链接是

<a href="<?php echo $router->generate('plan'); ?>">Plan <?php echo $router->generate('plan'); ?></a>

哪个不起作用。

你能帮忙吗?

1 个答案:

答案 0 :(得分:3)

您不能通过将plan.php作为参数传递给match函数来调用plan.php

检查http://altorouter.com/usage/processing-requests.html

上的示例

如果您想使用plan.php中的内容

您应该使用以下格式的map

$router->map('GET','/plan/',  function() {
    require __DIR__ . '/plan/plan.php';
} , 'plan');

到文件plan/plan.php添加echo 'testing plan';

另外,请仔细检查您的.htaccess文件是否包含

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

另外,如果您使用$router->setBasePath('/alto');设置基本路径,则index.php文件应放在alto目录中,这样您的网址就会出现http://example.com/alto/index.php

工作示例:

require 'lib/AltoRouter.php';

$router = new AltoRouter();
$router->setBasePath('/alto');

$router->map('GET','/plan/',  function(  ) {
    require __DIR__ . '/plan/plan.php';
} , 'plan');

// match current request
$match = $router->match();

if( $match && is_callable( $match['target'] ) ) {
    call_user_func_array( $match['target'], $match['params'] ); 
} else {
    // no route was matched
    header( $_SERVER["SERVER_PROTOCOL"] . ' 404 Not Found');
}

然后这将正常工作

<a href="<?php echo $router->generate('plan'); ?>">Plan <?php echo $router->generate('plan'); ?></a>