Create Simple URLs

Ruan 2020-06-20 22:35:57 +00:00
parent 97bf5e726b
commit b5a6f02632

10
Simple-URLs.md Normal file

@ -0,0 +1,10 @@
For simple URLs to work, your web server must be configured correctly.
## Nginx
In nginx.conf:
```
location /punishments {
try_files $uri $uri/ /punishments/index.php?$uri&$args;
}
```