-
Notifications
You must be signed in to change notification settings - Fork 1
static Urls::$cs
micahbaumann edited this page Oct 12, 2022
·
1 revision
Sets whether the project should be case sensitive be default.
Type | Default Value |
---|---|
Bool | True |
<?php
/*
URLS framework url config file.
Add your paths here:
ex. $urls->path('blog/', 'blog-home.php', true);
*/
include 'urls/Urls.php';
Urls::$base = '/';
Urls::$cs = false;
$urls = new Urls;
$urls->path('blog/', 'blog-home.php', true);
$urls->exe();
?>