It&#39;s not quite working, maybe what I want is a little more complicated.&nbsp; Here&#39;s what I have:<br>Listen 80<br>Listen 8080<br>&lt;VirtualHost <a href="http://127.0.0.1:80">127.0.0.1:80</a>&gt;<br>&nbsp; ServerName <a href="http://foo.domain1.com">
foo.domain1.com</a><br>&nbsp; DocumentRoot /var/www/html/foo<br>&lt;/VirtualHost&gt;<br>&lt;VirtualHost <a href="http://127.0.0.1:80">127.0.0.1:80</a>&gt;<br>
&nbsp; ServerName <a href="http://foo.domain2.com">foo.domain2.com</a><br>
&nbsp; DocumentRoot /var/www/html/foo<br>
&lt;/VirtualHost&gt;<br>
&lt;VirtualHost <a href="http://127.0.0.1:80">127.0.0.1:80</a>&gt;<br>
&nbsp; ServerName <a href="http://bar.domain1.com">bar.domain1.com</a><br>
&nbsp; DocumentRoot /var/www/html/bar<br>
&lt;/VirtualHost&gt;<br>
&lt;VirtualHost <a href="http://127.0.0.1:80">127.0.0.1:80</a>&gt;<br>

&nbsp; ServerName <a href="http://bar.domain2.com">bar.domain2.com</a><br>

&nbsp; DocumentRoot /var/www/html/bar<br>

&lt;/VirtualHost&gt;<br>

&lt;VirtualHost <a href="http://127.0.0.01:8080">127.0.0.01:8080</a>&gt;<br>&nbsp; ServerName <a href="http://foobar.domain1.com">foobar.domain1.com</a><br>&nbsp; ServerAlias <a href="http://isphostname.com">isphostname.com</a><br>
&nbsp; DocumentRoot /var/www/html<br>&lt;/VirtualHost&gt;<br><br>Essentially, I&#39;ll be hosting both foo and bar on <a href="http://domain1.com">domain1.com</a> (at least for a while) and <a href="http://domain2.com">domain2.com
</a>, but foobar will only be on <a href="http://domain1.com">domain1.com</a>, and be on port 8080.&nbsp; Right now, I&#39;m just testing <a href="http://domain1.com">domain1.com</a>.&nbsp; If I go to <a href="http://foo.domain1.com">
foo.domain1.com</a> (port 80), I get the correct page.&nbsp; If I go to <a href="http://foobar.domain1.com">foobar.domain1.com</a> (port 80), I get what I expected for <a href="http://foo.domain1.com">foo.domain1.com</a>.&nbsp; If I go to 
<a href="http://foo.domain1.com:8080">foo.domain1.com:8080</a>, I get what I expected for <a href="http://foobar.domain1.com:8080">foobar.domain1.com:8080</a>.&nbsp; What do I need to do to display an error if <a href="http://foobar.domain1.com">
foobar.domain1.com</a> (port 80) is entered?&nbsp; How do I get <a href="http://foobar.domain1.com:8080">foobar.domain1.com:8080</a> to work, but not <a href="http://foo.domain1.com:8080">foo.domain1.com:8080</a>?&nbsp; And I did get rid of the Port directive.
<br>