有你的情況非常多的可能性...
檢查你的數據庫中,有被存儲在數據庫URL其中需要更換
from localhost/test to 10.0.0.150/test
您可以用DATABASE SEARCH AND REPLACE SCRIPT IN PHP
替換它只需將文件夾放入本地主機並通過瀏覽器運行,即可將DB中的所有URL 。
一個檢查,當地WAMP服務器應該通過IP進行訪問,
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的虛擬主機,並分享到內部服務器上。