mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-14 19:08:25 +00:00
8 lines
No EOL
301 B
ApacheConf
8 lines
No EOL
301 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
# Uncomment if you have a .well-known directory in the app folder, e.g. for the Let's Encrypt challenge
|
|
# https://tools.ietf.org/html/rfc5785
|
|
#RewriteRule ^(\.well-known/.*)$ $1 [L]
|
|
RewriteRule ^$ webroot/ [L]
|
|
RewriteRule (.*) webroot/$1 [L]
|
|
</IfModule> |