WAMPサーバーを使用してWebサイトを実行しています。 Windows 7を使用しています。
2台のPCの間にLANを作成し、2台目のPCからローカルホストにアクセスしたい。
インターネット接続を使用していないため、IPアドレスを使用できないことに注意してください。
ご提案をお願いします。
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を再起動して共有を楽しみます。
IPは任意のLANまたはWAN IPアドレスです。ただし、ファイアウォール接続を許可するように設定する必要があります。
ウェブサーバーPCとのデバイス接続は、LANまたはWAN(つまり、wifi、connectify、adhoc、ケーブル、mypublic wifiなど)
次の手順に従う必要があります。
このIPは、Webサーバーを持つデバイスのものです。
実際には、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
後 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またはすべてのサービスを再起動することを忘れないでください!!!