mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-14 19:08:12 +08:00
28 lines
618 B
PHP
28 lines
618 B
PHP
<?php
|
|
|
|
namespace Sakura\Routers;
|
|
|
|
class PagesRouter
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->add_rewrite_rules();
|
|
}
|
|
|
|
public function add_rewrite_rules()
|
|
{
|
|
// This is the front end auth page. Add this rewrite rule
|
|
// to avoid 404 message when auth page first load, so the
|
|
// response from PHP can be a blank page.
|
|
// TODO: blank
|
|
add_action('init', function () {
|
|
add_rewrite_rule('sakura/auth$', 'index.php', 'top');
|
|
});
|
|
|
|
// TODO: Docker health check route
|
|
// add_action('init', function () {
|
|
// add_rewrite_rule('health$', 'index.php', 'top');
|
|
// });
|
|
}
|
|
}
|