-
Notifications
You must be signed in to change notification settings - Fork 1
class Urls(...$pathArrays)
micahbaumann edited this page Oct 12, 2022
·
1 revision
The class that contains most of URLS' functionality.
<?php
/*
URLS framework url config file.
Add your paths here:
ex. $urls->path('blog/', 'blog-home.php');
*/
include 'urls/Urls.php';
Urls::$base = '/';
$urls = new Urls;
$urls->exe();
?>