diff --git a/Simple-URLs.md b/Simple-URLs.md index 20dc0d8..9b9644c 100644 --- a/Simple-URLs.md +++ b/Simple-URLs.md @@ -4,11 +4,14 @@ For simple URLs to work, your web server must be configured correctly. In nginx.conf: ``` - location /punishments { - try_files $uri $uri/ /punishments/index.php?$uri&$args; + location /bans { + try_files $uri $uri/ /bans/index.php?$uri&$args; + index index.php index.html; } ``` +Replace each instance of `/bans` with the correct directory name, if applicable. + ## Apache Note: Untested. This probably doesn't work.