-6

こんにちは、私は以前、このリンク [http://myipaddress/www.abc.com] をインターネット経由で友人に提供して、自分の Web サイトを表示していました。ブロードバンド接続を使用していましたが、ルーターを購入してインターネットに接続しています。それを介して、今私が同じリンクを与えると.彼らは私のウェブサイトにアクセスできません..助けが必要です.

前もって感謝します

4

3 に答える 3

0

Apache ポートをポート転送する必要があります (別の指定がない限り、通常は 80)。

使用: http://www.portforward.com

ルーターを使用してポート転送する方法については、 を参照してください。


ルーターの設定にアクセスしますか? 知らないなら:

  1. コマンドプロンプトを開く
  2. ipconfig を発行する

次の情報が表示されます。

Ethernet adapter Local Area Connection:

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : fe80::d168:1665:65c:7c2e%12
   IPv4 Address. . . . . . . . . . . : 192.168.0.2
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.0.1

または、このように見えるもの。

  1. URL バーにデフォルト ゲートウェイを入力します
于 2013-04-30T14:39:58.423 に答える
0

ポート "80" (または http サーバーで使用されるポート) を、それを提供するローカル マシンに転送する必要があります。

于 2013-04-30T14:35:11.093 に答える
0

Mareshが言ったように、ルーターのhttpポート(80)をWebサイトにサービスを提供しているコンピューターに転送する必要があり、Apacheを使用している場合はhttpd.confファイルを編集します。

これは私のものです。ローカルネットワーク上のユーザーのみを許可しています

DocumentRoot "c:/wamp/www/"
<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:
#   Options FileInfo AuthConfig Limit
#
AllowOverride All

#
# Controls who can get stuff from this server.
#
# Online --> Require all granted

#   onlineoffline tag - don't remove

Require local
#Require all granted

</Directory>

広域ネットワークを許可するには、「#Require all grant」から # を削除し、「Require local」の前に置きます。

上記のコードは httpd.conf ファイルのセクションにすぎませんが、それは編集するセクションです。エディターで「ローカルが必要」を検索して見つけてください。

于 2013-04-30T14:43:51.530 に答える