Files
CakePHP_Repozytorium/.htaccess
Patryk_Turbakiewicz ab9076a87b
Some checks failed
Mark stale issues and pull requests / stale (push) Has been cancelled
Initial commit for main repository
2025-11-28 14:33:55 +01:00

13 lines
349 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 ^(\.well-known/.*)$ $1 [L]
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>