Kerim Tim.
Kerim Tim.

Reputation: 1159

How to make localhost(XAMPP) accessible from any computer?

I'm using XAMPP, for development purposes
Is it possible to allow access from other computers outside network?

What do i need to configure?

Upvotes: 2

Views: 2701

Answers (1)

RiggsFolly
RiggsFolly

Reputation: 94682

I assume you are using WAMPServer 2.5!

This means you are using Apache 2.4

In Apache 2.4 the syntax changed from what you are looking for to:

 Require local  ( For 127.0.0.1 and localhost and ::1 )

So you need to change that to allow access from anywhere to :

 Require all granted

And other changes as well, you could always try reading the manual, radical I know, but it just may catch on.

Upvotes: 3

Related Questions