This commit is contained in:
Anton McClure 2020-07-01 21:35:03 -04:00
parent df5c0d7e81
commit 54e782e349
No known key found for this signature in database
GPG Key ID: 95F468320CF39788
2 changed files with 10 additions and 0 deletions

5
news/.htaccess Normal file
View File

@ -0,0 +1,5 @@
RewriteEngine On
RewriteBase /news/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]

5
wiki/.htaccess Normal file
View File

@ -0,0 +1,5 @@
RewriteEngine On
RewriteBase /wiki/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]