Why Drupal 7 Multisite Install ?
When coming to web applications like Drupal there are many features to utilize on it and "Multisite" is one among them. Multisite is needed when you want to maintain Single code base for Multiple Drupal 7 sites.Steps for Drupal 7 Multisite install :
Assuming your web-directory is c:/xampp/htdocs/drupal (for wampp it will change)

$sites['multisite.dev'] = 'multisite.localhost';#6 The above steps are the only configuration needed from Drupal directory. After all these steps now you have to find "hosts" file in Windows installation. In Windows 7 hosts file will be in this path C:\Windows\System32\drivers\etc\hosts. In your hosts file add the below entry at the bottom.
127.0.0.1 multisite.dev#7 Find httpd.conf file in your xampp directort (if you are using wampp, you have to find httpd.conf in you wampp directory). In Xampp httpd.conf files will be in C:\xampp\apache\conf. Open httpd.conf file and add the below line,
NameVirtualHost *:80 <VirtualHost *:80 > DocumentRoot "C:/xampp/htdocs/drupal/" ServerName multisite.dev </VirtualHost *:80 >#8 Now you are done will the setup and configuration. Restart your Apache and Reboot your machine. #9 Once you are Rebooted open your browser and hit the below URL http://multisite.dev/ #10 You will see your Drupal site installation screen as below, note the above steps is applicable for Fresh installation and not existing Drupal sites.

The post Drupal 7 Multisite Install steps in Windows appeared first on Mydons.