あなたのケースで非常に多くの可能性があります...
は、データベースをチェックし、
from localhost/test to 10.0.0.150/test
を交換する必要がDBに格納されているURLがあります
DATABASE SEARCH AND REPLACE SCRIPT IN PHP
ローカルホストにフォルダを置きブラウザを実行するだけで、DBからすべてのURLを置き換えることができます。
別のチェックは、ローカルWAMPサーバが
Go to C:\WAMP\bin\apache\apache2.2.17\conf (version may change)
Open httpd.conf file in notepad.
Find the section given below. By default it will be like this.
<Directory "c:/wamp/www/">
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>>
Now change this section as given below.
<Directory "c:/wamp/www/">
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
#Deny from all
#Allow from 127.0.0.1
Allow from all
</Directory>
Restart apache service.
さらにあなたがhttpd.confのを介して仮想ホストを作成することができますし、同様に内部サーバにそれを共有し、そのためにIPでアクセスしなければならないです。