├── README.md ├── htaccess.dm └── omni.md /README.md: -------------------------------------------------------------------------------- 1 | # htaccess -------------------------------------------------------------------------------- /htaccess.dm: -------------------------------------------------------------------------------- 1 | Apache configuration file for web servers. 2 | -------------------------------------------------------------------------------- /omni.md: -------------------------------------------------------------------------------- 1 | 2 | ServerName example.com 3 | Redirect / https://example.com/hello-world 4 | 5 | --------------------------------------------------------------------------------