24 lines
607 B
ApacheConf
24 lines
607 B
ApacheConf
DocumentRoot /var/www
|
|
|
|
<Directory "/var/www/">
|
|
Options -Indexes +FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
|
|
RewriteEngine on
|
|
|
|
# If an existing asset or directory is requested go to it as it is
|
|
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
|
|
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
|
|
RewriteRule ^ - [L]
|
|
|
|
# If for an existing subpath, redirect to index
|
|
RewriteCond %{REQUEST_URI} "^/${CLANG}/"
|
|
RewriteRule ^ /${CLANG}/index.html [L]
|
|
|
|
# If the requested resource doesn't exist, use index.html
|
|
RewriteRule ^ /${CLANG}/ [L,R]
|
|
</Directory>
|
|
|
|
|