, ? mod_rewrite?
mod_rewrite , htaccess , index.php , , , core.php.
App.baseUrl:
Configure::write('App.baseUrl', env('SCRIPT_NAME'));
Here's how I fixed this problem (and a few others with redirects) by commenting out the following line from core.php:
// Configure::write('App.baseUrl', env('SCRIPT_NAME'));
or cake 3+ in config / app.php
//'baseUrl' => env('SCRIPT_NAME')
source
share