12 lines
303 B
ApacheConf
12 lines
303 B
ApacheConf
# Uncomment the following to prevent the httpoxy vulnerability
|
|
# See: https://httpoxy.org/
|
|
#<IfModule mod_headers.c>
|
|
# RequestHeader unset Proxy
|
|
#</IfModule>
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
RewriteRule ^$ webroot/ [L]
|
|
RewriteRule (.*) webroot/$1 [L]
|
|
</IfModule>
|