Hi,
I want to run 3 domains on a multisite installation. As far everything is working, except clean url.
I have deleted all .htaccess files and put the rewrite rules in the vhost definitions.
In /etc/apache2/sites-enabled/default i have:
DocumentRoot /var/www/drupal7
Servername localhost
<Directory /var/www/drupal7>
Options FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</Directory>
If i point to my servers IP address (192.168.11.22) and run the clean url test it all works. great :-)
I made the site1 in sites folder as site1.com and when I look at www.site1.com I get the correct webpages.
I of cource made a vhost file in /etc/apache2/sites-enabled/site1.com which contains:
DocumentRoot /var/www/drupal7
ServerName site1.com
ServerAlias www.site1.com
Options FollowSymLinks
AllowOverride None
Order allow,deny
allow from all