mirror of
https://github.com/AlexKrunch/AnonIB-3D.git
synced 2024-11-14 00:46:50 -05:00
7 lines
277 B
ApacheConf
7 lines
277 B
ApacheConf
|
RewriteEngine on
|
||
|
RewriteCond %{REQUEST_FILENAME} -s [OR]
|
||
|
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
||
|
RewriteCond %{REQUEST_FILENAME} -d
|
||
|
RewriteRule ^.*$ - [NC,L]
|
||
|
RewriteRule ^(srv|user)($|/) - [L]
|
||
|
RewriteRule ^(.*) /path-to-client-page/index.html [NC,L]
|