WAMP構成httpd.conf外部アクセス許可

1809 ワード

パソコンでApacheサービスを開始した後、どのように外部ネットワークにアクセスさせますか?
ネットで答えを探したり、仲間に聞いたりして、以下の案を得ました.だいたいhttpd.confにはいくつかの文を加え、自分のWiFiを利用してホットスポットを確立し、アクセスが必要なデバイスを接続させます.
一、httpd.confファイルの変更
1.httpd.confファイルの場所:
あなたのwampインストールディレクトリの下のbinapacheapache 2.4.9confフォルダにあります.このコンピュータの私のファイルのパスは:C:wampbinapacheapache 2.4.9\conf
2、httpd.confコード変更
①240行目くらいの位置で

    AllowOverride none
    Require all denied

次のように変更します.

    AllowOverride none
    #Require all denied
	Require all granted


つまり、他のリクエストへのアクセスを許可します.
②280行目くらいに「Require local」の後に「Require all granted」を付けます
すなわち

    #
    # 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.
    #

#   onlineoffline tag - don't remove
    Require local
	Require all granted

二、WiFiホットスポットを確立し、本サービスにアクセスしたい設備を接続させる
三、本機のファイアウォールを閉じる
四、ipconfigで自機のipv 4アドレスを表示する
このとき、他のデバイスを利用して自機のIPアドレスにアクセスすることができます.