mirror of
https://github.com/fortressforever/fortressforever-web.git
synced 2025-02-16 17:11:05 +00:00
13 lines
290 B
ApacheConf
13 lines
290 B
ApacheConf
|
|
||
|
<IfModule mod_rewrite.c>
|
||
|
Options +FollowSymlinks
|
||
|
RewriteEngine On
|
||
|
# RewriteBase /
|
||
|
</IfModule>
|
||
|
|
||
|
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||
|
RewriteCond %{REQUEST_FILENAME} -d
|
||
|
RewriteRule ^ - [L]
|
||
|
|
||
|
RewriteRule ^([^/\.]+)$ ?page=$1 [QSA,L]
|
||
|
RewriteRule ^([^/\.]+)/(.*)$ ?page=$1&rest=$2 [QSA,L]
|