I need to set a sub directory as DocumentRoot to run my application on slim framework. Is there any way to do this?
I tried with htaccess files without success: root:
RewriteEngine On
RewriteRule ^$ www/ [L]
RewriteRule (.*) www/$1 [L]
sub dir:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
Just create a
.ccconfig.yaml
in your application-root.Content should be
That should work. If you need to you can define your own PHP-config-settings in this file too.