<?php
/*
URLS framework url config file.
Add your paths here:
ex. $urls->path('blog/', 'blog-home.php', true);
*/
include 'urls/Urls.php';
Urls::$base = '/';
// Add to .htaccess
Urls::rewriteCond('# This is a .htaccess comment');
Urls::rewriteCond('# This is another .htaccess comment', dirname(__DIR__, 1).'\.htaccess');
// Remove from .htaccess
Urls::rewriteCondRemove('# This is a .htaccess comment');
Urls::rewriteCondRemove('# This is another .htaccess comment', dirname(__DIR__, 1).'\.htaccess');
$urls = new Urls;
$urls->path('blog/', 'blog-home.php', true);
$urls->exe();
?>