Access your local web site on your Android device via Wi-Fi

I am developing one website that needs to be hosted on the local system and access this website on all devices via WiFi. My system, in which I publish a website in IIS, connects to the local network. And WiFi is also the same router.

I need to access this website on any device that is connected to WiFi. How can i achieve this? If you have any other suggestion to do this than please let me know.

+7
android iis website localhost
source share
2 answers

You need to add the incoming rule in the firewall for port 80 (or any other port that you used for your website in IIS):

  • Go to Control Panel, Windows Firewall
  • Select Inbound Rules
  • Add New Rule
    • Select "Port" as the rule type
    • Select "TCP and put" 80 "(and any other ports you want to open) in" Specific Local Ports "
    • Select "Allow Connection"
    • Select the network location where the rule should apply.
    • Give a name and optional description

After that, you can access your site from other devices on the same network using http://computername (for example, http://myhomepc )

+32
source share

go to the Windows firewall and just turn off the firewall for "General network settings" ... now you will have access to your site using the ip of the current computer, for example http://192.168.1.200/SOCH/ ..... SOCH is a folder my project

-one
source share

All Articles