web-dev-qa-db-ja.com

LAN内の別のPCからローカルホストにアクセスする方法は?

WAMPサーバーを使用してWebサイトを実行しています。 Windows 7を使用しています。

2台のPCの間にLANを作成し、2台目のPCからローカルホストにアクセスしたい。
インターネット接続を使用していないため、IPアドレスを使用できないことに注意してください。

ご提案をお願いします。

14
Glories

httpd.confを編集して、次の行を見つける必要があります:Listen 127.0.0.1:80

次に、LANに設定した希望のIPを書き留めます。自動IPを使用しないでください。
e.g .: Listen 192.168.137.1:80

Windows 7のLAN IPとして192.167.137.1を使用しました。Apacheを再起動して共有を楽しみます。

8
Abbas Uddin

IPは任意のLANまたはWAN IPアドレスです。ただし、ファイアウォール接続を許可するように設定する必要があります。

ウェブサーバーPCとのデバイス接続は、LANまたはWAN(つまり、wifi、connectify、adhoc、ケーブル、mypublic wifiなど)

次の手順に従う必要があります。

  1. コントロールパネルに移動します
  2. インバウンドルール>新しいルール
  3. ポート>次へ>特定のローカルポート> 8080と入力>次へ>接続を許可>
  4. 次>すべてを選択(ドメイン、プライベート、パブリック)>任意の名前を指定
  5. これで、任意のデバイス(ラップトップ、モバイル、デスクトップなど)からローカルホストにアクセスできます。
  6. ブラウザのURLに123.23.xx.xx:8080のようなIPアドレスを入力して、任意のデバイスからローカルホストにアクセスします。

このIPは、Webサーバーを持つデバイスのものです。

7
pradeep yadav

実際には、IPアドレスを使用するためにインターネット接続は必要ありません。 LAN内の各コンピューターには、次のコマンドを実行して検出できる内部IPアドレスがあります

ipconfig /all

cmdで。

サーバーのIPアドレス(おそらく192.168.0.xまたは10.0.0.xなど)を使用して、Webサイトにリモートでアクセスできます。

IPを見つけてもウェブサイトにアクセスできない場合は、WAMPがその名前に応答するように構成されていないことを意味します(私は192.168.0.3?それは私の名前ではありません。私はLocalhostです)。 ...../Apache/config/httpd.conf

Listen *:80
5
Liviuge

 PCが他のPCに接続するには、次の4つのステップを使用します。
4ステップ:
 1- 編集 このファイル:httpd.conf
そのためには、wampサーバーをクリックして、Apacheを選択し、httpd.confを選択します
2- 見つける このテキスト:拒否 すべて
以下のタグ内:

  <Directory "c:/wamp/www"><!-- maybe other url-->

    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.Apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
#    Require all granted
#   onlineoffline tag - don't remove
     Order Deny,Allow
    Deny from all
     Allow from 127.0.0.1
     Allow from ::1
     Allow from localhost
</Directory>

3- 変化する to:拒否する none
このような:

<Directory "c:/wamp/www">

    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.Apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
#    Require all granted
#   onlineoffline tag - don't remove
     Order Deny,Allow
    Deny from none
     Allow from 127.0.0.1
     Allow from ::1
     Allow from localhost

4- 再起動 アパッチ
Apacheまたはすべてのサービスを再起動することを忘れないでください!!!

0
reza