I have a internal webserver runnnning on port 8080, I'm using the URL with the port number to access the site.
How do I access the site without using the port number 8080?
I tried different options in my httpd.conf file..no luck so far..
I have this in my httpd.conf file
<VirtualHost 162.9.10.219:8080>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^webpd [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{SERVER_PORT} !^8080$
RewriteRule ^/(.*)$ [C,L,R=301]
</VirtualHost>
Any help would be really apreciated.
Thanks
How do I access the site without using the port number 8080?
I tried different options in my httpd.conf file..no luck so far..
I have this in my httpd.conf file
<VirtualHost 162.9.10.219:8080>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^webpd [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{SERVER_PORT} !^8080$
RewriteRule ^/(.*)$ [C,L,R=301]
</VirtualHost>
Any help would be really apreciated.
Thanks