我在我的机器上本地安装了最新的 WAMP 堆栈,并且 Wordpress 应用程序在http://localhost/我的网络应用程序。
我正尝试从家庭网络内的另一台设备连接到该应用程序。
我对 httpd.conf 的 www 部分进行了更改,之前它有
需要本地我已将其更改为
报答所有给予
我可以通过从我的设备调用此 URL 来访问 Apache 主页:http://192.168.1.118:80/
然而,一旦我改成http://192.168.1.118:80/我的网络应用程序然后我手机浏览器中的 URL 变为http://localhost/我的网络应用程序并且显然无法找到它。
我已经禁用了 Comodo 防火墙,因此没有运行任何防火墙或防病毒软件
httpd.conf 文件包含以下内容:
ServerSignature On
ServerTokens Full
ServerRoot "c:/Development/wampserver/bin/apache/apache2.4.9"
Define APACHE24 Apache2.4
Listen 0.0.0.0:80
Listen [::0]:80
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule allowmethods_module modules/mod_allowmethods.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cache_module modules/mod_cache.so
LoadModule cache_disk_module modules/mod_cache_disk.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule php5_module "c:/Development/wampserver/bin/php/php5.5.12/php5apache2_4.dll"
<IfModule unixd_module>
User daemon
Group daemon
</IfModule>
ServerAdmin [email protected]
ServerName localhost:80
HostnameLookups Off
DocumentRoot "c:/Development/wampserver/www/"
<Directory />
AllowOverride none
Require all granted
</Directory>
<Directory "c:/Development/wampserver/www/">
Options Indexes FollowSymLinks
AllowOverride all
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.php index.php3 index.html index.htm
</IfModule>
<Files ".ht*">
Require all denied
</Files>
ErrorLog "c:/Development/wampserver/logs/apache_error.log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "c:/Development/wampserver/logs/access.log" common
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "c:/Development/wampserver/bin/apache/apache2.4.9/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "c:/Development/wampserver/bin/apache/apache2.4.9/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
<IfModule mime_module>
TypesConfig conf/mime.types
AddEncoding x-compress .Z
AddEncoding x-gzip .gz .tgz
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
</IfModule>
EnableSendfile off
AcceptFilter http none
AcceptFilter https none
Include conf/extra/httpd-autoindex.conf
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Include "c:/Development/wampserver/alias/*"
我需要在这里更改什么配置?
答案1
好的,这是 WordPress 的一个怪癖。
当您安装 WordPress 时,它会将您安装的域名存储在其数据库中。因此,如果您在此安装它,localhost/my-app
那么它将存储在其数据库中。
现在,当它远程连接时,它会使用它存储的域名,因此当您尝试从手机访问它时,URL 会如您所见发生变化。
现在可以在 WP 数据库中更改此存储的域名,如果我在这里给你一个链接可能会更好,因为它在WP 法典
因此,您只需将 URL 重命名为可以从您的手机(无需摆弄任何东西)和 LAN 上的其他 PC 访问的内容。
因此,我建议您使用运行 WAMPServer 的 PC 的 IP 地址,例如,将 URL 更改为http://192.168.1.118/my-web-app