hi can someone please advise how to set this, i need the website to open at localhost only and not by taping localhost:80 or the xx.xx.xx.xx:80 (ip + port) many thanks in advance
To allow only localhost to access the website put the following lines in your httpd.conf Order deny,allow Deny from all Allow from localhost Browser knows which port is used for http. Try http:// localhost/ in your browser.