Reputation: 135
I am developing one website which is need to host in local system and access this website in all device through WiFi. My system in which I publish website in IIS is Connected in LAN. And WiFi is also from same router.
I need to access this website in all device which is connected in WiFi. How can I achieve this? If you have any other suggestion to do this than than please let me know.
Upvotes: 12
Views: 19541
Reputation: 577
go to windows firewall and just turn off firewall for "Public Network Setting" ... now u will access your website using ip of current pc like http://192.168.1.200/SOCH/ ..... SOCH is my project folder
Upvotes: -1
Reputation: 6814
You need to add an inbound rule in the firewall for port 80 (or whatever port you used for your website on IIS):
After that you should be able to access your site from other devices in the same network using http://computername
(e.g. http://myhomepc
)
Upvotes: 35