|
6 | 6 | * Routes are very important mechanism that allows you to freely connect
|
7 | 7 | * different URLs to chosen controllers and their actions (functions).
|
8 | 8 | *
|
9 |
| - * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) |
10 |
| - * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) |
| 9 | + * CakePHP(tm) : Rapid Development Framework (https://cakephp.org) |
| 10 | + * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) |
11 | 11 | *
|
12 | 12 | * Licensed under The MIT License
|
13 | 13 | * For full copyright and license information, please see the LICENSE.txt
|
14 | 14 | * Redistributions of files must retain the above copyright notice.
|
15 | 15 | *
|
16 |
| - * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) |
17 |
| - * @link http://cakephp.org CakePHP(tm) Project |
18 |
| - * @license http://www.opensource.org/licenses/mit-license.php MIT License |
| 16 | + * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) |
| 17 | + * @link https://cakephp.org CakePHP(tm) Project |
| 18 | + * @license https://www.opensource.org/licenses/mit-license.php MIT License |
19 | 19 | */
|
20 | 20 |
|
21 | 21 | use Cake\Core\Plugin;
|
|
76 | 76 | $routes->connect('/business-solutions', ['controller' => 'Pages', 'action' => 'display', 'business-solutions']);
|
77 | 77 | $routes->connect('/roadtrip', ['controller' => 'Pages', 'action' => 'display', 'road_trip']);
|
78 | 78 |
|
79 |
| - $routes->redirect('/pages/documentation', 'http://book.cakephp.org/4'); |
80 |
| - $routes->redirect('/documentation', 'http://book.cakephp.org/4'); |
| 79 | + $routes->redirect('/pages/documentation', 'https://book.cakephp.org/4'); |
| 80 | + $routes->redirect('/documentation', 'https://book.cakephp.org/4'); |
81 | 81 | $routes->connect('/changelogs', ['controller' => 'Changelogs', 'action' => 'index']);
|
82 | 82 | $routes->connect('/changelogs/*', ['controller' => 'Changelogs', 'action' => 'view']);
|
83 | 83 | $routes->redirect('/development', ['controller' => 'Pages', 'action' => 'display', 'business-solutions']);
|
|
0 commit comments