Modified some paths to be more generic and not require rewrite. Some instances of phase names have been changed, others are still in process.
14 lines
419 B
ApacheConf
Executable File
14 lines
419 B
ApacheConf
Executable File
DirectoryIndex index.php index.shtml index.html
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
RewriteRule ^(start|finish|results)/?$ index.php?mode=$1 [L]
|
|
# RewriteRule ^phase/(notable|unnoted|renoted)/?$ index.php?mode=phase&phase=$1 [L]
|
|
RewriteRule ^results/(download|filtered)/? index.php?mode=results&$1=1 [L]
|
|
</IfModule>
|
|
|
|
<Files settings.json>
|
|
Deny from all
|
|
</Files> |