mirror of
https://github.com/fortressforever/fortressforever-web.git
synced 2024-11-25 05:21:19 +00:00
13 lines
No EOL
290 B
ApacheConf
13 lines
No EOL
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] |