0

以前は、[computername] .local:3000を介してアプリケーションを提供するlocalhost:3000にアクセスしていました。MountainLionの最近の更新により、Web共有が削除されました。

ここにあるWeb共有設定ペインをインストールしましたhttp://clickontyler.com/blog/2012/02/web-sharing-mountain-lion/

しかし残念ながら、IE7のWindowsXPからはまだアクセスできません。

何かご意見は?

4

1 に答える 1

1

他のコンピュータがそれにアクセスできるようにするために、彼らはそれがどこにあるかを知る必要があります。

これが「hosts」ファイルの出番です。

Windows XPマシンで、管理者としてメモ帳を開きます。メモ帳で、トップメニューの[ファイル]>[開く]をクリックします。

次に、C:\ Windows \ System32 \ drivers \ etc\hostsを開きます

ファイルは、以下に貼り付けたもののようになります。

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost

次に、ブラウザでアクセスするホスト名を使用して、OSXマシンのローカルIPアドレスを追加します。MacのローカルIPアドレスは、[ネットワーク設定]ペインで確認できます(手順については、http://osxdaily.com/2010/11/21/find-ip-address-mac/を参照してください) 。

例(ローカルネットワーク上のMacのIPが192.168.0.100であると仮定):

192.168.0.100    [computername].local

ファイルを保存します。これで、Windows XPマシンは、[computername] .localにアクセスするために、192.168.0.100のコンピューターに接続する必要があることを認識します。

Webサーバーがオンラインであり、ポート3000で接続を受け入れるように構成されている場合、Windows XPでWebブラウザーを開き、http:// [computername] .local:3000と入力できます。

それでもアクセスできない場合は、次のことも試して、結果で質問を更新してください。

  1. OSXでファイアウォールを一時的に無効にします。これにより、Windows XPがアクセスできるようになりますか?
  2. Windows XPからどのようなエラーメッセージが表示されますか?
于 2012-12-02T18:35:13.310 に答える