[Handling a Drupal web subfolder install]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !web/
RewriteRule (.*) /web/$1 [L]
RewriteBase /web
</IfModule>
# meg’s local redirect since D8 is living in /web #
###################################################
/.htaccess
/**
*For Drupal 8 with subfolder install:
*/
$base_url = 'http://site_folder_name.whatever_domain';
if (isset($GLOBALS['request']) && '/web/index.php' === $GLOBALS['request']->server->get('SCRIPT_NAME')) {
$GLOBALS['request']->server->set('SCRIPT_NAME', '/index.php');
}