Skip to content

ntacamp/wiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

No Trolls Allowed wiki

Event wiki. More information regarding event on our website notrollsallowed.com.

How to install

Copy config.example.php to config.php and edit values inside file.

Nginx rewrite rules:

server {
    ...
    location / {
        index index.php;
        error_page 404 = @wiki;
    }

    location @wiki {
        rewrite ^/(.*)$ /index.php?title=$1&$args;
    }
    ...
}