Sean Delaney
Bit poster
I have Parallels running Windows XP with IE7 and MAMP setup on my MacBook.
I have 2 local test websites setup on MAMP and working fine. I can access them by:
http://localhost/
http://test-site/
I have not configured Parallels yet as I don't know how to do it or what I need to change...
However I do have this done to get my local sites working in MAMP:
In the httpd.conf file I have:
<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs"
ServerName localhost
<Directory /Applications/MAMP/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *>
DocumentRoot "/Applications/MAMP/test-site/htdocs"
ServerName test-site
<Directory /Applications/MAMP/test-site/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
In the /etc/hosts/ file I have:
#
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost test-site
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
Basically I want to be able to view my test websites (http://localhost/ & http://test-site/) in IE7 on Parallels.
Please advise?
Regards
Sean
I have 2 local test websites setup on MAMP and working fine. I can access them by:
http://localhost/
http://test-site/
I have not configured Parallels yet as I don't know how to do it or what I need to change...
However I do have this done to get my local sites working in MAMP:
In the httpd.conf file I have:
<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs"
ServerName localhost
<Directory /Applications/MAMP/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *>
DocumentRoot "/Applications/MAMP/test-site/htdocs"
ServerName test-site
<Directory /Applications/MAMP/test-site/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
In the /etc/hosts/ file I have:
#
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost test-site
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
Basically I want to be able to view my test websites (http://localhost/ & http://test-site/) in IE7 on Parallels.
Please advise?
Regards
Sean
