Hello,
I have a problem with my host to install multisite drupal site.
I want to install a second site by a subfolder. So I called the subfolder "mysite.com.test". If I run the following url "mysite.com/test" I get an 403 error. The shared hosting returns this error because there are no index file in subfolder. If I place a file index.html or index.php in the subfolder I see the index file, and I have no error.
I tried to create a symlink referring to the index.php file of the Drupal root, but the url is changed. When I start the installation I have: "mysite.com/test/index.php/install.php.
How can I do? Is it possible to copy the index.php file in the subfolder and changing path of Drupal?
Thank you for your help.
EDIT: i have copy index.php file into my subfolder. In this file i have :
chdir('../..');
define('DRUPAL_ROOT', getcwd());
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
menu_execute_active_handler(); When i visit "mysite.com/test" I am redirected to the page "mysite.com/test/install.php".
But Drupal does not find this file and I get an error: install.php not found.
Thank you for your answers.