mirror of
https://github.com/dannyvankooten/AltoRouter.git
synced 2025-08-11 02:44:03 +02:00
fix internal links
This commit is contained in:
@@ -3,7 +3,7 @@ title: Matching requests using AltoRouter
|
||||
layout: default
|
||||
---
|
||||
<h1>
|
||||
<small>Using AltoRouter</small>
|
||||
<small>Using AltoRouter</small>
|
||||
Matching Requests
|
||||
</h1>
|
||||
|
||||
@@ -40,10 +40,10 @@ $router->map( 'GET', '/', function() { .. }, 'home' );
|
||||
$match = $router->match();
|
||||
|
||||
/*
|
||||
array(3) {
|
||||
["target"] => object(Closure)#2 (0) { }
|
||||
["params"] => array(0) { }
|
||||
["name"] => 'home'
|
||||
array(3) {
|
||||
["target"] => object(Closure)#2 (0) { }
|
||||
["params"] => array(0) { }
|
||||
["name"] => 'home'
|
||||
}
|
||||
*/
|
||||
{% endhighlight %}
|
||||
@@ -51,7 +51,7 @@ array(3) {
|
||||
<p>AltoRouter does not process the request for you, you are free to use the method you prefer. Here is a simplified example <a href="/usage/processing-requests.html">how to process requests using closures</a> though.</p>
|
||||
|
||||
<p>
|
||||
<a style="float:left;" href="/usage/mapping-routes.html">« Mapping routes</a>
|
||||
<a style="float:right;" href="/usage/processing-requests.html">Processing requests »</a>
|
||||
<a style="float:left;" href="{{ '/usage/mapping-routes.html' | relative_url }}">« Mapping routes</a>
|
||||
<a style="float:right;" href="{{ '/usage/processing-requests.html' | relative_url }}">Processing requests »</a>
|
||||
<br style="clear:both;">
|
||||
</p>
|
||||
</p>
|
||||
|
Reference in New Issue
Block a user