If you're looking for a solution of the question - how to access XAMPP on network or how to view website running on XAMPP from different computer, you can do it in the following manner. In your xampppathapacheconfextra open file httpd-xampp.conf and find the below tag: # Close XAMPP sites here Order deny,allow Deny from all Allow from ::1 127.0.0.0/8 ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var and add following like after Allow from ::1 127.0.0.0/8 {line} "Allow from all" In next step, you need to restart xampp, and you are done. In recent XAMPP versions, the technique is a...