1
0
mirror of https://github.com/dannyvankooten/AltoRouter.git synced 2025-01-16 20:08:12 +01:00

fix links on install page

This commit is contained in:
Danny van Kooten 2023-10-09 20:26:52 +02:00
parent 8b920941af
commit e3d705ea5b
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
<body>
<div class="wrapper">
<header>
<h1 class="site-title"><a href="{{ '/' | relative_url }}">Altorouter</a></h1>
<h1 class="site-title"><a href="{{ '/' | relative_url }}">AltoRouter</a></h1>
<p>PHP5.3+ Routing Class. Supports REST, dynamic and reversed routing. </p>
<p class="view"><a href="https://github.com/dannyvankooten/AltoRouter">View the Project on GitHub <small>dannyvankooten/AltoRouter</small></a></p>

View File

@ -9,7 +9,7 @@ layout: default
</h1>
<h2>Install AltoRouter using Composer</h2>
<p>To install using Composer, you will have to install Composer first.</p>
<p>To install using Composer, you will have to <a href="https://getcomposer.org/doc/00-intro.md#installation-linux-unix-macos">install Composer</a> first.</p>
{% highlight bash %}
curl -s https://getcomposer.org/installer | php
@ -37,7 +37,7 @@ php composer.phar install
require 'vendor/autoload.php';
{% endhighlight %}
<p>You are now ready to use the <code>AltoRouter</code> class. <a href="{{ '/usage/rewrite-requests.html' | relative_url }}">Rewrite all requests to your application file</a> and start <a href="/usage/mapping-routes.html">mapping your routes</a>. </p>
<p>You are now ready to use the <code>AltoRouter</code> class. <a href="{{ '/usage/rewrite-requests.html' | relative_url }}">Rewrite all requests to your application file</a> and start <a href="{{ '/usage/mapping-routes.html' | relative_url }}">mapping your routes</a>. </p>
<h2 class="subtitle">Install AltoRouter manually</h2>
<p>Just <a href="https://github.com/dannyvankooten/AltoRouter/zipball/master">download the AltoRouter class</a> and require it in your application file.</p>