first question: i already remove index.php, but i want remove /web also. this is my .htaccess
index.php
/web
.htaccess
RewriteEngine on # If a
You can add the information in file configuration to remove /web:
$baseUrl = str_replace('/web', '', (new Request)->getBaseUrl()); return [ ... 'components' => [ 'request' => [ 'baseUrl' => $baseUrl, ], ... ] ]